Update app.py
Browse files
app.py
CHANGED
|
@@ -94,7 +94,7 @@ from huggingface_hub import InferenceClient
|
|
| 94 |
import gradio as gr
|
| 95 |
|
| 96 |
# Create inference client for your model
|
| 97 |
-
client = InferenceClient("Asit03/
|
| 98 |
|
| 99 |
def chat(prompt):
|
| 100 |
response = client.text_generation(prompt, max_new_tokens=1500)
|
|
|
|
| 94 |
import gradio as gr
|
| 95 |
|
| 96 |
# Create inference client for your model
|
| 97 |
+
client = InferenceClient("Asit03/AI_Agent_llama") # or private repo with token
|
| 98 |
|
| 99 |
def chat(prompt):
|
| 100 |
response = client.text_generation(prompt, max_new_tokens=1500)
|