mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
fix misspelling
This commit is contained in:
@@ -13,7 +13,7 @@ def call_ai_function(function, args, description, model=None):
|
|||||||
model = cfg.smart_llm_model
|
model = cfg.smart_llm_model
|
||||||
# For each arg, if any are None, convert to "None":
|
# For each arg, if any are None, convert to "None":
|
||||||
args = [str(arg) if arg is not None else "None" for arg in args]
|
args = [str(arg) if arg is not None else "None" for arg in args]
|
||||||
# parse args to comma seperated string
|
# parse args to comma separated string
|
||||||
args = ", ".join(args)
|
args = ", ".join(args)
|
||||||
messages = [
|
messages = [
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user