Metadata-Version: 2.1
Name: codegpt-sdk
Version: 1.0.0
Summary: CODEGPT python package
Home-page: https://github.com/JudiniLabs/codegpt-python-sdk
Author: Daniel Avila
Author-email: daniel@judini.ai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# CODEGPT Python Package

This package provides you with an easy way to interact with the CODEGPT API in your Python applications.

## Install

To install the package, simply run the following command:

```bash
pip install codegpt-sdk
```

## Usege

Below is a sample code demonstrating how to use the CODEGPT package in your Python application:

```python

# Import the package
import asyncio
from codegpt.agent import Agent

def main():
    # Replace with your actual API key and URL ID
    api_key = "your_api_key_here"
    agent_id = "your_agent_id_here"

    # Initialize the CODEGPT class
    agent_instance = Agent(api_key, agent_id)

    # Optional: update API key or URL ID if needed
    agent_instance.set_api_key("new_api_key")
    agent_instance.set_agent_id("new_agent_id")

    # Create the prompt
    prompt = "tell me short story about blue turtle"

    # Make a completion request
    response = asyncio.run(agent_instance.completion(prompt, stream=False))

    # Handle the response as needed
    print(response)

if __name__ == "__main__":
    main()
```
