We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried your shared Google Colab notebook
I'm not sure if it's intended to be like that or if it's meant to be done differently, but I couldn't get that part to work without altering it.
# Here you pass your own GROQ API key
from dotenv import load_dotenv from duckduckgo_search import DDGS import requests, os import json load_dotenv() api_key = os.getenv("<your_groq_api_key>") header = { "Authorization": f"Bearer {api_key}", "Content-Type": "application/json" } proxy_url = "https://groqcall.ai/proxy/groq/v1/chat/completions"
But then received a ConnectTimeout error while making an API request, resulting in an APITimeoutError due to a timed-out request.
ConnectTimeout
APITimeoutError
from dotenv import load_dotenv from duckduckgo_search import DDGS import requests, os import json load_dotenv() api_key = os.getenv("<your_groq_api_key>")
from phi.llm.openai.like import OpenAILike from phi.assistant import Assistant from phi.tools.duckduckgo import DuckDuckGo import os, json import dotenv load_dotenv() api_key = os.getenv("<your_groq_api_key>")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried your shared Google Colab notebook
I'm not sure if it's intended to be like that or if it's meant to be done differently, but I couldn't get that part to work without altering it.
# Here you pass your own GROQ API key
Sending POST request, with full functions implementation
But then received a
ConnectTimeout
error while making an API request, resulting in anAPITimeoutError
due to a timed-out request.Schema-less Function Call 🤩
Using with PhiData (Or similar libraries)
The text was updated successfully, but these errors were encountered: