Groq
Groq #
Bases: OpenAILike
Groq LLM.
Examples:
pip install llama-index-llms-groq
from llama_index.llms.groq import Groq
# Set up the Groq class with the required model and API key
llm = Groq(model="llama3-70b-8192", api_key="your_api_key")
# Call the complete method with a query
response = llm.complete("Explain the importance of low latency LLMs")
print(response)
Source code in llama-index-integrations/llms/llama-index-llms-groq/llama_index/llms/groq/base.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
class_name
classmethod
#
class_name() -> str
Get class name.
Source code in llama-index-integrations/llms/llama-index-llms-groq/llama_index/llms/groq/base.py
46 47 48 49 |
|