An LLM wrapper built for scene prog projects
Project description
SceneProgLLM
SceneProgLLM is a powerful and versatile Python package that wraps around LangChain's LLM interface to provide enhanced functionality, including support for text, code, JSON, list and pydantic response formats along with image input/output, caching, and multiple endpoints. This project is built to support SceneProg projects.
Features
- Flexible Response Formats:
- Supports text, code, list, JSON, pydantic and image outputs.
- Image Input and Output:
- Accepts image inputs and enables image generation through Stable Diffusion (SD) or OpenAI's image generation API.
- Caching:
- Integrated caching system to store and retrieve previous query responses for faster execution.
Installation
To install the package and its dependencies, use the following command:
pip install sceneprogllm
For proper usage, create a .env file in the package root with following fields:
TEXT2IMGSD=<endpoint for text to image generation>
OPENAI_API_KEY=<Your OpenAI key>
OLLAMA_HOST=Ollama host IP address
OLLAMA_PORT=Ollama host Port
Getting Started
Importing the Package
from sceneprogllm import LLM
Usage Examples
- Generating Text Responses
llm = LLM(name="text_bot", response_format="text")
response = llm("What is the capital of France?")
print(response)
>> The capital of France is Paris.
- Generating JSON Responses
llm = LLM(
name="json_bot",
response_format="json",
json_keys=["capital:str", "currency:str"]
)
query = "What is capital and currency of India?"
response = llm(query)
print(response)
>> {'capital': 'New Delhi', 'currency': 'Indian Rupee'}
- Generating List Responses
llm = LLM(
name="list_bot",
response_format="list",
)
query = "List G7 countries"
response = llm(query)
print(response)
>> ['Canada', 'France', 'Germany', 'Italy', 'Japan', 'United Kingdom', 'United States']
- Generating Pydantic Responses
from pydantic import BaseModel, Field
class mypydantic(BaseModel):
country: str = Field(description="Name of the country")
capital: str = Field(description="Capital city of the country")
llm = LLM(
name="pydantic_bot",
response_format="pydantic",
)
response = llm("What is the capital of France?", pydantic_object=mypydantic)
print(response)
>> country='France' capital='Paris'
- Generating Python Code
llm = LLM(name="code_bot", response_format="code")
query = "Write a Python function to calculate factorial of a number."
response = llm(query)
print(response)
>>
def factorial(n):
if n < 0:
raise ValueError("Factorial is not defined for negative numbers")
elif n == 0 or n == 1:
return 1
else:
result = 1
for i in range(2, n + 1):
result *= i
return result
- Generating images from text
llm = LLM(name="image_bot", response_format="image")
response = llm("Generate an image of a futuristic cityscape.")
response.save("futuristic_city.jpg")
>>
- Query using Images
llm = LLM(name="image_bot", response_format="json", json_keys=["count:int"])
image_paths = ["assets/lions.png"]
response = llm("How many lions are there in the image?", image_paths=image_paths)
print(response)
>> {'count': 6}
- Clear LLM cache
from sceneprogllm import clear_llm_cache
clear_llm_cache()
- Set seed and temperature
llm = LLM(
name="seed_bot",
seed=0,
temperature=1.0
)
- Control behavious via system description
llm = LLM(
name="system_bot",
system_desc="You are a funny AI assistant",
)
response = llm("What is the capital of France")
print(response)
>>
Ah, the capital of France! That's Paris, the city of romance, lights, and baguettes longer than your arm! Just imagine the Eiffel Tower wearing a beret and saying, "Bonjour!"
Using Ollama
Additional models like Deekseek-R1 and Llama3.2-vision are available via Ollama with the LLM class, make sure Ollama is installed. Then, when initializing the LLM object, specify the Ollama Model via model_name. For example, "llama3.2-vision".
See Ollama model site for the available options. Note that different model will support different modes (text, image, etc.).
Here is an example:
from sceneprogllm import LLM
# Example for generating text responses using Ollama
llm = LLM(name="text_bot", response_format="text", model_name="llama3.2-vision:90b")
Queries
Please send your questions to k5gupta@ucsd.edu
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sceneprogllm-0.1.5.tar.gz.
File metadata
- Download URL: sceneprogllm-0.1.5.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d830fd311b8a1180018c113d98c67b185accac830087753cdd9b904aff9889ea
|
|
| MD5 |
a3a03218de09136951d274ede7c96710
|
|
| BLAKE2b-256 |
1e37f03530fc88b4bbfaa76031a043b57cdc638adbd15d9e9c80a1d50edbed0a
|
File details
Details for the file sceneprogllm-0.1.5-py3-none-any.whl.
File metadata
- Download URL: sceneprogllm-0.1.5-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5e295f1ffd363067736097a601d39b1b6e2df568b5dda9e8078255572b432c5
|
|
| MD5 |
72250d1bfbb74d5af79c64bf9263ce01
|
|
| BLAKE2b-256 |
ce09cd5264a3276eade76c793f073bffc7cbe91d2b3f4c7b60f0308927e355d2
|