Update agent.py
Browse files
agent.py
CHANGED
@@ -149,9 +149,10 @@ def build_graph(provider: str = "huggingface"):
|
|
149 |
elif provider == "huggingface":
|
150 |
# Add huggingface endpoint
|
151 |
#repo_id = "mistralai/Mistral-7B-Instruct-v0.2"
|
152 |
-
repo_id = "Qwen/Qwen2.5-Coder-32B-Instruct" # -> it doesn't reply well
|
153 |
#repo_id = "deepseek-ai/DeepSeek-Coder-V2-Instruct" -> it doesn't work (error on StopIteration)
|
154 |
#repo_id = "meta-llama/CodeLlama-34b-Instruct-hf" -> it doesn't work (error on StopIteration)
|
|
|
155 |
chat = ChatHuggingFace(
|
156 |
#llm=HuggingFaceEndpoint(
|
157 |
# endpoint_url="https://api-inference.huggingface.co/models/Meta-DeepLearning/llama-2-7b-chat-hf",
|
|
|
149 |
elif provider == "huggingface":
|
150 |
# Add huggingface endpoint
|
151 |
#repo_id = "mistralai/Mistral-7B-Instruct-v0.2"
|
152 |
+
#repo_id = "Qwen/Qwen2.5-Coder-32B-Instruct" # -> it doesn't reply well
|
153 |
#repo_id = "deepseek-ai/DeepSeek-Coder-V2-Instruct" -> it doesn't work (error on StopIteration)
|
154 |
#repo_id = "meta-llama/CodeLlama-34b-Instruct-hf" -> it doesn't work (error on StopIteration)
|
155 |
+
repo_id = "WizardLMTeam/WizardCoder-15B-V1.0"
|
156 |
chat = ChatHuggingFace(
|
157 |
#llm=HuggingFaceEndpoint(
|
158 |
# endpoint_url="https://api-inference.huggingface.co/models/Meta-DeepLearning/llama-2-7b-chat-hf",
|