MCPcopy Create free account
hub / github.com/FSoft-AI4Code/HyperAgent / __init__

Method __init__

src/hyperagent/agents/llms.py:29–33  ·  view source on GitHub ↗
(self, config)

Source from the content-addressed store, hash-verified

27
28class GroqLLM(LLM):
29 def __init__(self, config):
30 super().__init__(config)
31 self.client = Groq(
32 api_key=os.environ["GROQ_API_KEY"],
33 )
34
35 def __call__(self, prompt: str):
36 response = self.client.chat.completions.create(

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected