rustchain-community 1.0.0

Open-source AI agent framework with core functionality and plugin system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: "{{name}}"
description: "{{description}}"
version: "1.0"

steps:
  - id: "llm_task"
    step_type: "llm"
    parameters:
      provider: "ollama"
      model: "phi3:mini"
      prompt: "Please analyze the following task and provide recommendations: {{name}}"
      max_tokens: 500
    
  - id: "save_results"
    step_type: "create_file"
    parameters:
      path: "llm_analysis.txt"
      content: "{{ steps.llm_task.output }}"