Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Callable model #310

Open
liorheber opened this issue Mar 23, 2025 · 7 comments
Open

Callable model #310

liorheber opened this issue Mar 23, 2025 · 7 comments
Labels
enhancement New feature or request

Comments

@liorheber
Copy link

Describe the feature

Currently you support instructions as a Callable, which is great to manage at experiment on instructions.
That being said, instructions are usually model dependent. It would be great if the model could accept a callable input as well.

Example:

def get_instructions():
    return langfuse.get_prompt("my-agent").compile()

def get_model():
    return langfuse.get_prompt("my-agent").config.model

agent = Agent(
    name="my-agent"
    instruction=get_insturctions
    model=get_model
)

Another alternative would be to just provided it with a get_config Callable that will return name, instructions, model, etc.

@liorheber liorheber added the enhancement New feature or request label Mar 23, 2025
@rm-openai
Copy link
Collaborator

This is a cool idea. For your use case, is the model different each time the Agent is called? Wondering if this would work:

agent = Agent(instructions=get_instructions(), model=get_model())

@liorheber
Copy link
Author

I'm not sure calling the functions during the creation of the agent works, unless the agents are re-created every time on demand.

I was hoping that it will get the model on every _run_single_turn like it does for the system prompt.
This will allow us to update the system prompt and model from the outside regardless of how the agents are initialized.

Does that make sense?

@rm-openai
Copy link
Collaborator

Yup, totally. I'll look into it.

@liorheber
Copy link
Author

Is the project open for contributions?

@rm-openai
Copy link
Collaborator

Yup absolutely

@liorheber
Copy link
Author

liorheber commented Mar 24, 2025

I opened this PR #312

@liorheber
Copy link
Author

@rm-openai should I maintain the PR up to date, or handle it only when someone gets time to review it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants