-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Adding support for ⚡ Groq API #637
New issue
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
Closed
Closed
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
1006f58
Add groq to deps and introduce new groq module
ivarflakstad f6cabb3
making predictinos fast
someshfengde cb6e258
making version compatible
someshfengde 2223065
adding the inspect_history
someshfengde 7abf293
Merge pull request #3 from curieo-org/initial-groq-support
someshfengde e31b577
adding groq documentation
someshfengde 5c03f3a
comm remove
someshfengde 03d1d94
Merge remote-tracking branch 'master/main' into initial-groq-support
someshfengde e15332d
adding the together fix
someshfengde 1b166a4
Merge pull request #4 from curieo-org/togetherAPIFIX
someshfengde a9f0ac1
unused imports removed and ruff check fixed
someshfengde a543447
poetry lock , imports resolved
someshfengde 704e777
adding together stuff
someshfengde 760e4e9
adding it as optino
someshfengde 4d7cbbf
adding poetry lock
someshfengde f1bcd77
Merge remote-tracking branch 'upstream/main' into initial-groq-support
someshfengde 871cfb0
Merge remote-tracking branch 'upstream/main'
someshfengde 20f5a99
Merge remote-tracking branch 'upstream/main' into initial-groq-support
someshfengde 081c959
Delete poetry.lock
someshfengde 9e7bf1a
Merge remote-tracking branch 'upstream/main'
someshfengde 1f1c513
Merge branch 'main' into initial-groq-support
someshfengde bb0ba75
Merge remote-tracking branch 'upstream/main' into initial-groq-support
someshfengde 3f2bc6f
poetry lock changes
someshfengde 642cf49
Update .gitignore
someshfengde 3400fc3
Update __init__.py
someshfengde 40c7359
making the fix
someshfengde fb74479
Merge remote-tracking branch 'upstream/main' into initial-groq-support
someshfengde c00917e
Update poetry.lock
someshfengde 3bfc8f9
poetry fix
someshfengde 963e376
Merge remote-tracking branch 'upstream_001/main' into initial-groq-su…
someshfengde File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| --- | ||
| sidebar_position: 9 | ||
| --- | ||
|
|
||
| # dspy.GROQ | ||
|
|
||
| ### Usage | ||
|
|
||
| ```python | ||
| lm = dspy.GROQ(model='mixtral-8x7b-32768', api_key ="gsk_***" ) | ||
| ``` | ||
|
|
||
| ### Constructor | ||
|
|
||
| The constructor initializes the base class `LM` and verifies the provided arguments like the `api_key` for GROQ api retriver. The `kwargs` attribute is initialized with default values for relevant text generation parameters needed for communicating with the GPT API, such as `temperature`, `max_tokens`, `top_p`, `frequency_penalty`, `presence_penalty`, and `n`. | ||
|
|
||
| ```python | ||
| class GroqLM(LM): | ||
| def __init__( | ||
| self, | ||
| api_key: str, | ||
| model: str = "mixtral-8x7b-32768", | ||
| **kwargs, | ||
| ): | ||
| ``` | ||
|
|
||
|
|
||
|
|
||
| **Parameters:** | ||
| - `api_key` str: API provider authentication token. Defaults to None. | ||
| - `model` str: model name. Defaults to "mixtral-8x7b-32768' options: ['llama2-70b-4096', 'gemma-7b-it'] | ||
| - `**kwargs`: Additional language model arguments to pass to the API provider. | ||
|
|
||
| ### Methods | ||
|
|
||
| #### `def __call__(self, prompt: str, only_completed: bool = True, return_sorted: bool = False, **kwargs, ) -> list[dict[str, Any]]:` | ||
|
|
||
| Retrieves completions from GROQ by calling `request`. | ||
|
|
||
| Internally, the method handles the specifics of preparing the request prompt and corresponding payload to obtain the response. | ||
|
|
||
| After generation, the generated content look like `choice["message"]["content"]`. | ||
|
|
||
| **Parameters:** | ||
| - `prompt` (_str_): Prompt to send to OpenAI. | ||
| - `only_completed` (_bool_, _optional_): Flag to return only completed responses and ignore completion due to length. Defaults to True. | ||
| - `return_sorted` (_bool_, _optional_): Flag to sort the completion choices using the returned averaged log-probabilities. Defaults to False. | ||
| - `**kwargs`: Additional keyword arguments for completion request. | ||
|
|
||
| **Returns:** | ||
| - `List[Dict[str, Any]]`: List of completion choices. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,169 @@ | ||
| import logging | ||
| from typing import Any | ||
|
|
||
| import backoff | ||
|
|
||
| try: | ||
| import groq | ||
| from groq import Groq | ||
| groq_api_error = (groq.APIError, groq.RateLimitError) | ||
| except ImportError: | ||
| groq_api_error = (Exception) | ||
|
|
||
|
|
||
| import dsp | ||
| from dsp.modules.lm import LM | ||
|
|
||
| # Configure logging | ||
| logging.basicConfig( | ||
| level=logging.INFO, | ||
| format="%(message)s", | ||
| handlers=[logging.FileHandler("groq_usage.log")], | ||
| ) | ||
|
|
||
|
|
||
|
|
||
| def backoff_hdlr(details): | ||
| """Handler from https://pypi.org/project/backoff/""" | ||
| print( | ||
| "Backing off {wait:0.1f} seconds after {tries} tries " | ||
| "calling function {target} with kwargs " | ||
| "{kwargs}".format(**details), | ||
| ) | ||
|
|
||
|
|
||
| class GroqLM(LM): | ||
| """Wrapper around groq's API. | ||
|
|
||
| Args: | ||
| model (str, optional): groq supported LLM model to use. Defaults to "mixtral-8x7b-32768". | ||
| api_key (Optional[str], optional): API provider Authentication token. use Defaults to None. | ||
| **kwargs: Additional arguments to pass to the API provider. | ||
| """ | ||
|
|
||
| def __init__( | ||
| self, | ||
| api_key: str, | ||
| model: str = "mixtral-8x7b-32768", | ||
| **kwargs, | ||
| ): | ||
| super().__init__(model) | ||
| self.provider = "groq" | ||
| if api_key: | ||
| self.api_key = api_key | ||
| self.client = Groq(api_key = api_key) | ||
| else: | ||
| raise ValueError("api_key is required for groq") | ||
|
|
||
|
|
||
| self.kwargs = { | ||
| "temperature": 0.0, | ||
| "max_tokens": 150, | ||
| "top_p": 1, | ||
| "frequency_penalty": 0, | ||
| "presence_penalty": 0, | ||
| "n": 1, | ||
| **kwargs, | ||
| } | ||
| models = self.client.models.list().data | ||
| if models is not None: | ||
| if model in [m.id for m in models]: | ||
| self.kwargs["model"] = model | ||
| self.history: list[dict[str, Any]] = [] | ||
|
|
||
|
|
||
| def log_usage(self, response): | ||
| """Log the total tokens from the Groq API response.""" | ||
| usage_data = response.get("usage") | ||
| if usage_data: | ||
| total_tokens = usage_data.get("total_tokens") | ||
| logging.info(f"{total_tokens}") | ||
|
|
||
| def basic_request(self, prompt: str, **kwargs): | ||
| raw_kwargs = kwargs | ||
|
|
||
| kwargs = {**self.kwargs, **kwargs} | ||
|
|
||
| kwargs["messages"] = [{"role": "user", "content": prompt}] | ||
| response = self.chat_request(**kwargs) | ||
|
|
||
| history = { | ||
| "prompt": prompt, | ||
| "response": response.choices[0].message.content, | ||
| "kwargs": kwargs, | ||
| "raw_kwargs": raw_kwargs, | ||
| } | ||
|
|
||
| self.history.append(history) | ||
|
|
||
| return response | ||
|
|
||
| @backoff.on_exception( | ||
| backoff.expo, | ||
| groq_api_error, | ||
| max_time=1000, | ||
| on_backoff=backoff_hdlr, | ||
| ) | ||
| def request(self, prompt: str, **kwargs): | ||
| """Handles retreival of model completions whilst handling rate limiting and caching.""" | ||
| if "model_type" in kwargs: | ||
| del kwargs["model_type"] | ||
|
|
||
| return self.basic_request(prompt, **kwargs) | ||
|
|
||
| def _get_choice_text(self, choice) -> str: | ||
| return choice.message.content | ||
|
|
||
| def chat_request(self, **kwargs): | ||
| """Handles retreival of model completions whilst handling rate limiting and caching.""" | ||
| response = self.client.chat.completions.create(**kwargs) | ||
| return response | ||
|
|
||
| def __call__( | ||
| self, | ||
| prompt: str, | ||
| only_completed: bool = True, | ||
| return_sorted: bool = False, | ||
| **kwargs, | ||
| ) -> list[dict[str, Any]]: | ||
| """Retrieves completions from model. | ||
|
|
||
| Args: | ||
| prompt (str): prompt to send to model | ||
| only_completed (bool, optional): return only completed responses and ignores completion due to length. Defaults to True. | ||
| return_sorted (bool, optional): sort the completion choices using the returned probabilities. Defaults to False. | ||
|
|
||
| Returns: | ||
| list[dict[str, Any]]: list of completion choices | ||
| """ | ||
|
|
||
| assert only_completed, "for now" | ||
| assert return_sorted is False, "for now" | ||
| response = self.request(prompt, **kwargs) | ||
|
|
||
| if dsp.settings.log_openai_usage: | ||
| self.log_usage(response) | ||
|
|
||
| choices = response.choices | ||
|
|
||
| completions = [self._get_choice_text(c) for c in choices] | ||
| if return_sorted and kwargs.get("n", 1) > 1: | ||
| scored_completions = [] | ||
|
|
||
| for c in choices: | ||
| tokens, logprobs = ( | ||
| c["logprobs"]["tokens"], | ||
| c["logprobs"]["token_logprobs"], | ||
| ) | ||
|
|
||
| if "<|endoftext|>" in tokens: | ||
| index = tokens.index("<|endoftext|>") + 1 | ||
| tokens, logprobs = tokens[:index], logprobs[:index] | ||
|
|
||
| avglog = sum(logprobs) / len(logprobs) | ||
| scored_completions.append((avglog, self._get_choice_text(c))) | ||
|
|
||
| scored_completions = sorted(scored_completions, reverse=True) | ||
| completions = [c for _, c in scored_completions] | ||
|
|
||
| return completions | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.