Spaces:
Running
Running
Niloy
commited on
Commit
·
9afe0d3
1
Parent(s):
d8ebc46
Remove unused Google genai client from run_code.py
Browse files- tools/run_code.py +0 -3
tools/run_code.py
CHANGED
|
@@ -1,11 +1,8 @@
|
|
| 1 |
-
from google import genai
|
| 2 |
import subprocess
|
| 3 |
from langchain_core.tools import tool
|
| 4 |
from dotenv import load_dotenv
|
| 5 |
import os
|
| 6 |
-
from google.genai import types
|
| 7 |
load_dotenv()
|
| 8 |
-
client = genai.Client()
|
| 9 |
|
| 10 |
def strip_code_fences(code: str) -> str:
|
| 11 |
code = code.strip()
|
|
|
|
|
|
|
| 1 |
import subprocess
|
| 2 |
from langchain_core.tools import tool
|
| 3 |
from dotenv import load_dotenv
|
| 4 |
import os
|
|
|
|
| 5 |
load_dotenv()
|
|
|
|
| 6 |
|
| 7 |
def strip_code_fences(code: str) -> str:
|
| 8 |
code = code.strip()
|