Python SDK for integrating Ads4GPTs advertising logic into conversational AI applications via LangGraph agents
Project description
Ads4GPTs Core SDK
Python SDK for integrating with Ads4GPTs, the monetization backbone of the AI Native Internet.
Overview
The Ads4GPTs Core SDK provides the tools to configure your Integration Agent, connecting your AI application to the Ads4GPTs platform. Ad requests are initiated autonomously based on conversational context and user intent, with full support for streaming responses.
Installation
pip install ads4gpts-core
Requirements
- Python 3.11 or higher
- Active Ads4GPTs account with API credentials
Quick Start
1. Configure Environment Variables
export ADS4GPTS_AGENT_URL="https://your-agent-api.com"
export ADS4GPTS_GPT_ID="your-gpt-id"
export ADS4GPTS_API_KEY="your-api-key"
export ADS4GPTS_SSP_ID="your-ssp-id"
2. Basic Usage
from ads4gpts_core import invoke_integration_agent
# First conversation in a session
stream = invoke_integration_agent(
user_input="What are the best noise-cancelling headphones under €200?",
message_history=[],
thread_id="thread_123",
session_id="session_456",
)
# Process streaming response
async for chunk in stream:
print(chunk)
Stream Processing Utilities
Split Stream
Duplicate an async stream into two independent consumers:
from ads4gpts_core import split_stream
async def source_stream():
for i in range(5):
yield i
streams = split_stream(source_stream())
# Both consumers receive all chunks
async for chunk in streams['app_stream']:
print(f"App: {chunk}")
async for chunk in streams['util_stream']:
print(f"Util: {chunk}")
Merge Streams
Process two streams sequentially:
from ads4gpts_core import merge_streams
async def app_stream():
for i in range(3):
yield f"app_{i}"
async def ads_stream():
for i in range(3):
yield f"ads_{i}"
# Outputs: app_0, app_1, app_2, ads_0, ads_1, ads_2
async for chunk in merge_streams(app_stream(), ads_stream()):
print(chunk)
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 ads4gpts_core-0.1.2.tar.gz.
File metadata
- Download URL: ads4gpts_core-0.1.2.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e9a162364c7922c58b349ad1205b00f31bdcd4c3ebf1048429ec862a3faa236
|
|
| MD5 |
e90d1f448524b5ed105fd43538f341c3
|
|
| BLAKE2b-256 |
500577be6ee7d4487e5adf5f3a8bd57600f029b418b0cc30eaf47bf3c059a2d3
|
File details
Details for the file ads4gpts_core-0.1.2-py3-none-any.whl.
File metadata
- Download URL: ads4gpts_core-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48a4ce9982120070a07ef0b36c1ac6bef9504951c9c6a9dc9ee1bf2d36cbccb5
|
|
| MD5 |
5f08886d18a5d3e78335c21649b2328f
|
|
| BLAKE2b-256 |
f939b93c14f857bdf85679564aa45c9705922eee3f8543c0a41a88b0bf0c62c3
|