A new way to build with Large Language Models
blog.fixie.ai
A new way to build with Large Language Models
1–10 of 46 posts
Re: A new way to build with Large Language Models
#2I assume the output of the LLM is monitored by fixie and the result of the function inserted allow the LLM to respond again?
Re: A new way to build with Large Language Models
#3if I’m understanding this correctly this is a way for LLMs to call external APIs by showing them special key words that call functions I assume the output of the LLM is monitored by fixie and the result of the function inserted allow the LLM to respond again?
Re: A new way to build with Large Language Models
#4So, the first thing I'd want to try is hooking up some basic arithmetic to see if its math gets more reliable. And if not, why not?
Seems like someone would have tried this already?
Re: A new way to build with Large Language Models
#5Re: A new way to build with Large Language Models
#6Neat, this is like a SaaS version of Langchain[1]. For those who haven't already seen it, Langchain is a framework that gives you the ability to do this as well as integrate out of the box solutions for other common problems like memory. [1] https://langchain.readthedocs.io/en/latest/
Re: A new way to build with Large Language Models
#7Neat. I was just thinking that one thing you can do that current large language models don't do is use a calculator to check your work. So, the first thing I'd want to try is hooking up some basic arithmetic to see if its math gets more reliable. And if not, why not? Seems like someone would have tried this already?
Re: A new way to build with Large Language Models
#8Neat, this is like a SaaS version of Langchain[1]. For those who haven't already seen it, Langchain is a framework that gives you the ability to do this as well as integrate out of the box solutions for other common problems like memory. [1] https://langchain.readthedocs.io/en/latest/
Re: A new way to build with Large Language Models
#9If developers on your platform are building code that accepts prompt input from untrusted users do you have any measures in place to avoid them tricking the system into executing functions in an inappropriate or unintended way?
One thing I'd find useful would be a limit on the number of functions that can be called during a single execution - and rate limits and budget calls on functions generally might be smart as well.