Skip to main content

A library for easy integration with Groq API

Project description

PocketGroq

PocketGroq is a powerful and user-friendly Python library that provides seamless integration with the Groq API. It offers a simple interface to leverage Groq's advanced language models for various natural language processing tasks, including text generation, tool use, and more.

Table of Contents

  1. Installation
  2. Configuration
  3. Basic Usage
  4. Advanced Features
  5. Error Handling
  6. Best Practices
  7. Contributing
  8. License

Installation

Install PocketGroq using pip:

pip install pocketgroq

Configuration

Before using PocketGroq, you need to set up your Groq API key. There are two ways to do this:

  1. Environment Variable: Set the GROQ_API_KEY environment variable:

    export GROQ_API_KEY=your_api_key_here
    
  2. .env File: Create a .env file in your project root and add your API key:

    GROQ_API_KEY=your_api_key_here
    

    PocketGroq will automatically load the API key from the .env file.

Basic Usage

Here's a simple example of how to use PocketGroq for text generation:

from pocketgroq import GroqProvider

# Initialize the GroqProvider
groq = GroqProvider()

# Generate text
response = groq.generate("Tell me a joke about programming")
print(response)

Advanced Features

JSON Mode

You can use JSON mode to ensure the model's output is in a valid JSON format:

from pocketgroq import GroqProvider

groq = GroqProvider()

prompt = "Generate a JSON object with name, age, and occupation fields"
response = groq.generate(prompt, json_mode=True)
print(response)

Streaming

For long responses, you can use streaming to get partial results as they're generated:

from pocketgroq import GroqProvider

groq = GroqProvider()

prompt = "Write a short story about a time traveler"
for chunk in groq.generate(prompt, stream=True):
    print(chunk, end="", flush=True)

Tool Use

PocketGroq supports tool use, allowing the model to call predefined functions:

from pocketgroq import GroqProvider

def get_weather(location: str):
    # Simulated weather function
    return {"temperature": 20, "condition": "sunny"}

groq = GroqProvider()

tools = [
    {
        "type": "function",
        "function": {
            "name": "get_weather",
            "description": "Get the current weather for a location",
            "parameters": {
                "type": "object",
                "properties": {
                    "location": {
                        "type": "string",
                        "description": "The city and state, e.g. San Francisco, CA",
                    }
                },
                "required": ["location"],
            },
            "implementation": get_weather
        }
    }
]

response = groq.generate("What's the weather in San Francisco?", tools=tools)
print(response)

Asynchronous Operations

PocketGroq supports asynchronous operations for both regular and streaming responses:

import asyncio
from pocketgroq import GroqProvider

groq = GroqProvider()

async def async_generate():
    response = await groq.generate("Explain quantum computing", async_mode=True)
    print(response)

async def async_stream():
    async for chunk in groq.generate("Tell me a story about AI", async_mode=True, stream=True):
        print(chunk, end="", flush=True)

async def main():
    await async_generate()
    print("\n---\n")
    await async_stream()

asyncio.run(main())

Error Handling

PocketGroq provides custom exceptions for better error handling:

from pocketgroq import GroqProvider
from pocketgroq.exceptions import GroqAPIKeyMissingError, GroqAPIError

try:
    groq = GroqProvider()
    response = groq.generate("Tell me a joke")
    print(response)
except GroqAPIKeyMissingError:
    print("Please set your GROQ_API_KEY environment variable or in the .env file")
except GroqAPIError as e:
    print(f"An error occurred while calling the Groq API: {str(e)}")

Best Practices

  1. Always handle exceptions to gracefully manage API errors and missing keys.
  2. Use streaming for long-form content generation to improve user experience.
  3. Leverage tool use for complex tasks that require external data or computations.
  4. Use JSON mode when you need structured output from the model.
  5. For high-throughput applications, consider using asynchronous operations.

Contributing

We welcome contributions to PocketGroq! Please see our CONTRIBUTING.md file for details on how to get started.

License

PocketGroq is released under the MIT License. See the LICENSE file for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pocketgroq-0.1.4.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

pocketgroq-0.1.4-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file pocketgroq-0.1.4.tar.gz.

File metadata

  • Download URL: pocketgroq-0.1.4.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for pocketgroq-0.1.4.tar.gz
Algorithm Hash digest
SHA256 75d75f06b2ecc4e8fc516101d98ab48ebcbe75bad450702b47d77b63a17d984d
MD5 5364a826d6173f9d9e0821f7d237ed71
BLAKE2b-256 2604f58224b406c949b4364c453c9e2219104ec392602c3efdc71801fabfd9b8

See more details on using hashes here.

File details

Details for the file pocketgroq-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: pocketgroq-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 6.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for pocketgroq-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1294cb7624c68a8ca0e3429aab88156a666e3aaa02965c55488f768c6e81811e
MD5 ec43a3905f1bbc133fe17d1f921e8983
BLAKE2b-256 8507b767f02e34a53226a1a89c6facd1644c1a691d3abeb51c959b2274f2d8b4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page