flowity 0.0.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

flowity 0.0.1

Flowity
Workflow language designed for LLM.
Installation
pip install flowity

Write flowity code
Hello, who are you?

$resp = $query()
$end($resp)

Run a workflow
import os

# === Setup Langchain ===

from langchain_openai import ChatOpenAI

os.environ["OPENAI_API_KEY"] = "sk-xxxx" # Your OpenAI api key
# Set OPENAI_API_BASE if you're using a reverse proxy
# os.environ["OPENAI_API_BASE"] = "https://api.openai.com/v1"

model = ChatOpenAI()

# === Write Flowity Code ===

code = """
Hello, who are you?

$str = $query()
$end($str)
"""

# === Run Flowity Code ===

from flowity.rt import rtime

rt = rtime.FlowityRuntime()

ret = rt.run(
code=code,
model=model
)

print(ret)

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.