Skip to main content

A library for unlimited use of LLM through g4f, using a proxy

Project description

g4fp

This is a library for unlimited use of LLM through g4f, using a proxy

Installation:

pip install g4fp

Now you can pass debug (bool) and proxy (FreeProxy object) values to ClientProxy and AsyncClientProxy

Usage example (async):

import asyncio
from fp.fp import FreeProxy
from g4fp import AsyncClientProxy

async def main():
    client = await AsyncClientProxy(debug=False, proxy=FreeProxy(timeout=5, rand=True))
    messages = [
        {"role": "user", "content": "Hello!"}
    ]
    response = await client.chat.completions.create(
        model="o1-mini",
        messages=messages,
    )
    print(response.choices[0].message.content)

if __name__ == "__main__":
    asyncio.run(main())

Usage example (sync):

from g4fp import ClientProxy

client = ClientProxy(debug=True)
messages = [
    {"role": "user", "content": "Hello!"}
]
response = client.chat.completions.create(
    model="o1-mini",
    messages=messages,
)
print(response.choices[0].message.content)

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

g4fp-1.1.6.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

g4fp-1.1.6-py3-none-any.whl (14.9 kB view details)

Uploaded Python 3

File details

Details for the file g4fp-1.1.6.tar.gz.

File metadata

  • Download URL: g4fp-1.1.6.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.0

File hashes

Hashes for g4fp-1.1.6.tar.gz
Algorithm Hash digest
SHA256 c53d8f1aa975a5241121111702df6c77f9a86ba19d1dc83905ae66a5c473402b
MD5 94a99865875c14d6348e07213b6524d5
BLAKE2b-256 e7831d048c06c28318caab94705bed905fffc661a356a7f9edcfce46f4fcf9d1

See more details on using hashes here.

File details

Details for the file g4fp-1.1.6-py3-none-any.whl.

File metadata

  • Download URL: g4fp-1.1.6-py3-none-any.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.0

File hashes

Hashes for g4fp-1.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 cb64775bca257ff4f0dbeb59a64883d885053518ba80366db8f5ff0162faa800
MD5 3e73ae7d5051ade4a24057106192505c
BLAKE2b-256 e996f74fbf9976b98acbae1297a9e4e5e1d520f4f41b74817c5a7ee5aa9abb0b

See more details on using hashes here.

Supported by

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