[object Object]

← back to Exo

add linux tinygrad test

790c08afd4fed6b73a2276db001c3c61d9babd8e · 2025-01-23 01:31:44 +0000 · Alex Cheema

Files touched

Diff

commit 790c08afd4fed6b73a2276db001c3c61d9babd8e
Author: Alex Cheema <alexcheema123@gmail.com>
Date:   Thu Jan 23 01:31:44 2025 +0000

    add linux tinygrad test
---
 .circleci/config.yml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 07e685b8..b09f72b1 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -254,6 +254,28 @@ jobs:
           prompt: "Keep responses concise. Who was the king of pop?"
           expected_output: "Michael Jackson"
 
+  chatgpt_api_integration_test_tinygrad_linux:
+    resource_class: ubuntu-24.04
+    steps:
+      - checkout
+      - run:
+          name: Set up Python
+          command: |
+            brew install python@3.12
+            python3.12 -m venv env
+            source env/bin/activate
+      - run:
+          name: Install dependencies
+          command: |
+            source env/bin/activate
+            pip install --upgrade pip
+            pip install .
+      - run_chatgpt_api_test:
+          inference_engine: tinygrad
+          model_id: llama-3.2-1b
+          prompt: "Keep responses concise. Who was the king of pop?"
+          expected_output: "Michael Jackson"
+
   measure_pip_sizes:
     macos:
       xcode: "16.0.0"

← a8a9e3ff explicitly enable TOKENIZERS_PARALLELISM=true  ·  back to Exo  ·  fix config 8484eb41 →