miyabi-agent-codegen 0.1.2

Miyabi CodeGen Agent - AI-driven code generation with LLM integration
docs.rs failed to build miyabi-agent-codegen-0.1.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Miyabi CodeGen Agent

AI-driven code generation with LLM and Potpie integration.

Components

  • CodeGenAgent: Generates code based on Task requirements

Features

  • LLM integration (GPT-OSS-20B via Ollama)
  • Potpie AI knowledge graph integration
  • Code documentation generation
  • Retry logic with exponential backoff

Example

use miyabi_agent_codegen::CodeGenAgent;
use miyabi_agent_core::BaseAgent;
use miyabi_types::{AgentConfig, Task};

# async fn example() {
let config = AgentConfig { /* config fields */ };
let codegen = CodeGenAgent::new(config);

let task = Task { /* task fields */ };
let result = codegen.execute(&task).await;
# }