Spaces:
Paused
Paused
ggsmith842
commited on
Commit
·
65fe471
1
Parent(s):
1118bb3
fix token val
Browse files
app.py
CHANGED
|
@@ -11,7 +11,7 @@ try:
|
|
| 11 |
)
|
| 12 |
tools = mcp_client.get_tools()
|
| 13 |
|
| 14 |
-
model = InferenceClientModel(token=os.getenv("
|
| 15 |
agent = CodeAgent(tools=[*tools], model=model)
|
| 16 |
|
| 17 |
demo = gr.ChatInterface(
|
|
|
|
| 11 |
)
|
| 12 |
tools = mcp_client.get_tools()
|
| 13 |
|
| 14 |
+
model = InferenceClientModel(token=os.getenv("HF_API_TOKEN"))
|
| 15 |
agent = CodeAgent(tools=[*tools], model=model)
|
| 16 |
|
| 17 |
demo = gr.ChatInterface(
|