Complete Examples Collection¶
This document provides a series of complete, runnable Nexa example code covering various application scenarios from basic to enterprise level. Each example includes complete code, how to run it, and expected output.
📋 Table of Contents¶
Basic Examples¶
Tool Integration Examples¶
- Example 4: File Processing Assistant
- Example 5: Web Content Scraper
- Example 6: Database Query Assistant
Multi-Agent Collaboration Examples¶
Advanced Pattern Examples¶
- Example 10: Intent Routing Customer Service
- Example 11: Critic Loop Optimization
- Example 12: DAG Parallel Processing
- Example 13: Conditional Branch Processing
Enterprise Examples¶
- Example 14: Research Report Generation System
- Example 15: Intelligent Customer Service System
- Example 16: Code Generation and Testing
Basic Examples¶
Example 1: Hello World¶
Purpose: Demonstrate the most basic Nexa program structure.
Complete Code:
// hello_world.nx
// The simplest Nexa program
agent Greeter {
role: "Friendly greeting assistant",
model: "deepseek/deepseek-chat",
prompt: "You are an enthusiastic assistant. Respond to every greeting with concise and friendly language."
}
flow main {
result = Greeter.run("Hello, Nexa!");
print(result);
}
How to Run:
nexa run hello_world.nx
Expected Output:
Hello! Welcome to the world of Nexa! How can I help you? 😊
Code Explanation:
| Line | Description |
|-----|------|
| 4-8 | Define an Agent named Greeter, setting role, model, and prompt |
| 10 | flow main is the program entry point, similar to main function in other languages |
| 11 | Call the Agent's run() method, passing user input |
| 12 | Print the result |
Example 2: Simple Chatbot¶
Purpose: Demonstrate how to create a chatbot capable of multi-turn conversations.
Complete Code:
// chatbot.nx
// Simple chatbot
agent ChatBot {
role: "Intelligent chat assistant",
model: "deepseek/deepseek-chat",
prompt: """
You are a friendly, helpful chatbot.
Rules:
1. Keep responses concise and clear
2. If unsure, honestly admit it
3. For complex questions, provide well-organized answers
""",
memory: "persistent" // Enable persistent memory
}
flow main {
// First round of conversation
response1 = ChatBot.run("Hello! Please introduce yourself.");
print("User: Hello! Please introduce yourself.");
print("Bot: " + response1);
print("");
// Second round of conversation (Agent will remember context)
response2 = ChatBot.run("What did I just ask you?");
print("User: What did I just ask you?");
print("Bot: " + response2);
}
How to Run:
nexa run chatbot.nx
Expected Output:
User: Hello! Please introduce yourself.
Bot: Hello! I am an intelligent chat assistant that can help you answer questions, provide suggestions, and have friendly conversations. How can I help you?
User: What did I just ask you?
Bot: You just asked me to introduce myself. I've already answered that I am an intelligent chat assistant.
Key Points:
- memory: "persistent" enables the Agent to remember conversation history
- In subsequent run() calls, the Agent can access previous conversation context
Example 3: Chat Assistant with Memory¶
Purpose: Demonstrate how to configure an Agent's long-term memory feature.
Complete Code:
// memory_assistant.nx
// Assistant with long-term memory
agent SmartAssistant {
role: "Personal intelligent assistant",
model: "deepseek/deepseek-chat",
prompt: "You are an intelligent assistant that can remember user preferences.",
memory: "persistent",
experience: "assistant_memory.md", // Load long-term memory
cache: true // Enable caching to improve response speed
}
flow main {
// First interaction, tell the assistant user preferences
SmartAssistant.run("I like science fiction novels, especially Liu Cixin's works.");
// Subsequent interaction, assistant should remember preferences
result = SmartAssistant.run("Recommend a book for me.");
print(result);
}
Memory File Example (assistant_memory.md):
# User Preference Memory
## Reading Preferences
- Likes science fiction novels
- Preferred author: Liu Cixin
## Other Preferences
- (Assistant will automatically update this file)
Tool Integration Examples¶
Example 4: File Processing Assistant¶
Purpose: Demonstrate how to use standard library tools to process files.
Complete Code:
// file_assistant.nx
// File processing assistant
agent FileAssistant uses std.fs, std.time {
role: "File management assistant",
model: "deepseek/deepseek-chat",
prompt: """
You are a file management assistant. You can:
- Read file contents
- Create new files
- Get current time
Choose appropriate tools based on user needs to complete tasks.
"""
}
flow main {
task = """
Please perform the following operations:
1. Get the current time
2. Create a file named 'note.txt'
3. Write content: current time and a greeting
""";
result = FileAssistant.run(task);
print(result);
}
How to Run:
nexa run file_assistant.nx
Expected Output:
Completed the following operations:
1. Current time: 2024-01-15 10:30:00
2. Created file note.txt
3. Wrote content: "2024-01-15 10:30:00 - Hello, this is an auto-generated note!"
Example 5: Web Content Scraper¶
Purpose: Demonstrate how to use HTTP tools to scrape web content.
Complete Code:
// web_scraper.nx
// Web content scraper
agent WebScraper uses std.http, std.fs {
role: "Web scraping assistant",
model: "deepseek/deepseek-chat",
prompt: """
You are a web content scraping assistant.
Your tasks are:
1. Use http tool to fetch web content
2. Extract key information (such as title, content summary)
3. Optional: Save to local file
"""
}
agent Summarizer {
role: "Content summarization expert",
model: "deepseek/deepseek-chat",
prompt: "Summarize the scraped web content into 3-5 key points."
}
flow main {
url = "https://example.com";
// Pipeline: scrape -> summarize
summary = url >> WebScraper >> Summarizer;
print("Web Summary:");
print(summary);
}
Expected Output:
Web Summary:
1. This is the homepage of the example website
2. Mainly provides product and service introductions
3. Contains contact and about us pages
4. Website design is clean and modern
Example 6: Database Query Assistant¶
Purpose: Demonstrate how to create an Agent that can interact with databases.
Complete Code:
// db_assistant.nx
// Database query assistant
// Custom database tool
tool DatabaseQuery {
description: "Execute SQL queries and return results",
parameters: {
"query": "string // SQL query statement"
}
}
agent DBAssistant uses DatabaseQuery {
role: "Database assistant",
model: "deepseek/deepseek-chat",
prompt: """
You are a database query assistant.
Based on user's natural language needs:
1. Understand user intent
2. Generate appropriate SQL queries
3. Execute using DatabaseQuery tool
4. Explain results in natural language
Note: Only execute SELECT queries, do not perform modification operations.
"""
}
flow main {
question = "Show the last 10 order records";
result = DBAssistant.run(question);
print(result);
}
Multi-Agent Collaboration Examples¶
Example 7: Translation Pipeline¶
Purpose: Demonstrate multiple Agents processing data in series.
Complete Code:
// translation_pipeline.nx
// English -> Chinese translation pipeline
// Stage 1: Translation
agent Translator {
role: "Professional translator",
model: "deepseek/deepseek-chat",
prompt: """
You are a professional English-to-Chinese translator.
Requirements:
- Accurately convey the original meaning
- Use authentic and fluent Chinese
- Preserve professional terminology from the original
"""
}
// Stage 2: Proofreading
agent Proofreader {
role: "Proofreading editor",
model: "deepseek/deepseek-chat",
prompt: """
You are a senior Chinese proofreading editor.
Check and correct:
- Grammar errors
- Unclear expressions
- Punctuation usage
If the translation is already good, return the original text directly.
"""
}
// Stage 3: Polishing
agent Polisher {
role: "Text polishing expert",
model: "deepseek/deepseek-chat",
prompt: """
You are a text polishing expert.
Enhance:
- Beauty of the text
- Reading fluency
- Add appropriate literary flair
"""
}
flow main {
english_text = """
Artificial intelligence is not just a technology,
but a fundamental shift in how we interact with machines
and how machines interact with the world.
""";
// Three-stage pipeline
final_translation = english_text >> Translator >> Proofreader >> Polisher;
print("Original:");
print(english_text);
print("\nTranslation:");
print(final_translation);
}
Expected Output:
Original:
Artificial intelligence is not just a technology,
but a fundamental shift in how we interact with machines
and how machines interact with the world.
Translation:
Artificial intelligence is not only a technology, but a fundamental revolution in how we interact with machines and how machines interact with the world.
Example 8: Code Review Team¶
Purpose: Demonstrate multi-Agent collaboration with specialized division of labor.
Complete Code:
// code_review_team.nx
// Code review team
// Define output protocol
protocol CodeReviewReport {
code_quality: "string", // Code quality rating (A/B/C/D/F)
issues: "list[string]", // List of found issues
suggestions: "list[string]", // Improvement suggestions
overall_comment: "string" // Overall evaluation
}
// Code quality reviewer
agent QualityReviewer implements CodeReviewReport {
role: "Code quality reviewer",
model: "deepseek/deepseek-chat",
prompt: """
Review code quality, focusing on:
- Code structure
- Naming conventions
- Readability
- Potential bugs
"""
}
// Security reviewer
agent SecurityReviewer {
role: "Security reviewer",
model: "deepseek/deepseek-chat",
prompt: """
Review code security, focusing on:
- SQL injection risks
- XSS vulnerabilities
- Sensitive information leakage
- Permission control issues
"""
}
// Report compiler
agent ReportCompiler {
role: "Report compiler",
model: "deepseek/deepseek-chat",
prompt: """
Integrate opinions from multiple reviewers into a comprehensive report.
Clear format, highlighting key points.
"""
}
flow main {
code_to_review = """
def get_user(user_id):
query = f"SELECT * FROM users WHERE id = {user_id}"
return db.execute(query)
""";
// Parallel review then compile
final_report = code_to_review
|>> [QualityReviewer, SecurityReviewer]
&>> ReportCompiler;
print("=== Code Review Report ===");
print(final_report);
}
Expected Output:
=== Code Review Report ===
[Code Quality] Rating: C
- Issues: Missing input validation, no exception handling
- Suggestions: Add parameter type checking
[Security Issues] High Risk
- SQL injection vulnerability: Direct concatenation of user input
- Suggestion: Use parameterized queries
[Improvement Suggestions]
1. Use parameterized queries to prevent SQL injection
2. Add try-except exception handling
3. Add type annotations for readability
Example 9: Research Analyst Team¶
Purpose: Demonstrate DAG parallel processing in research analysis applications.
Complete Code:
// research_team.nx
// Research analyst team
// Industry researchers
agent TechResearcher {
role: "Tech industry researcher",
model: "deepseek/deepseek-chat",
prompt: "Analyze latest trends and key technologies in the tech industry."
}
agent FinanceResearcher {
role: "Finance industry researcher",
model: "deepseek/deepseek-chat",
prompt: "Analyze market dynamics and investment opportunities in the finance industry."
}
agent HealthcareResearcher {
role: "Healthcare researcher",
model: "deepseek/deepseek-chat",
prompt: "Analyze innovations and regulatory developments in the healthcare industry."
}
// Chief analyst
agent ChiefAnalyst {
role: "Chief analyst",
model: "deepseek/deepseek-chat",
prompt: """
Integrate analysis reports from various industry researchers,
identify cross-industry common trends and investment opportunities.
"""
}
// Report writer
agent ReportWriter {
role: "Report writer",
model: "deepseek/deepseek-chat",
prompt: "Organize analysis content into professional research report format."
}
flow main {
topic = "2024 Investment Opportunity Analysis";
// Parallel research -> integrate -> write
final_report = topic
|>> [TechResearcher, FinanceResearcher, HealthcareResearcher]
&>> ChiefAnalyst
>> ReportWriter;
print("=== Research Report ===");
print(final_report);
}
Flow Diagram:
┌─────────────────┐
│ Input Topic │
└────────┬────────┘
│
┌─────────────┼─────────────┐
│ │ │
▼ ▼ ▼
┌───────┐ ┌───────┐ ┌──────────┐
│ Tech │ │Finance│ │Healthcare│
│Research│ │Research│ │ Research │
└───┬───┘ └───┬───┘ └────┬─────┘
│ │ │
└─────────┬─┴────────────┘
│
▼
┌───────────┐
│ Chief │
│ Analyst │
└─────┬─────┘
│
▼
┌───────────┐
│ Report │
│ Writer │
└───────────┘
Advanced Pattern Examples¶
Example 10: Intent Routing Customer Service¶
Purpose: Demonstrate using match intent for intelligent customer service routing.
Complete Code:
// customer_service.nx
// Intelligent customer service routing system
// Specialized Agents after intent classification
agent OrderBot {
role: "Order service specialist",
model: "deepseek/deepseek-chat",
prompt: "Handle order queries, modifications, cancellations, etc."
}
agent RefundBot {
role: "Refund service specialist",
model: "deepseek/deepseek-chat",
prompt: "Handle refund applications, progress inquiries, etc."
}
agent ProductBot {
role: "Product consultation specialist",
model: "deepseek/deepseek-chat",
prompt: "Answer product features, specifications, comparisons, etc."
}
agent TechBot {
role: "Technical support specialist",
model: "deepseek/deepseek-chat",
prompt: "Resolve technical issues, troubleshooting, usage guidance."
}
agent GeneralBot {
role: "General customer service",
model: "deepseek/deepseek-chat",
prompt: "Handle general questions and greetings, guide users when unable to help."
}
flow main {
user_message = "Why hasn't my order #12345 shipped yet?";
response = match user_message {
intent("Order query or modification") => OrderBot.run(user_message),
intent("Refund application or inquiry") => RefundBot.run(user_message),
intent("Product consultation") => ProductBot.run(user_message),
intent("Technical support") => TechBot.run(user_message),
_ => GeneralBot.run(user_message)
};
print("Customer service reply: " + response);
}
Test Cases: | User Input | Routes To | Description | |---------|-------|------| | "Why hasn't my order #12345 shipped yet?" | OrderBot | Order related | | "I want a refund, the product has quality issues" | RefundBot | Refund related | | "Does this phone support 5G?" | ProductBot | Product consultation | | "The app won't open, what should I do?" | TechBot | Technical support | | "Hello" | GeneralBot | Default handling |
Example 11: Critic Loop Optimization¶
Purpose: Demonstrate using loop until for Agent self-optimization.
Complete Code:
// critic_loop.nx
// Critic loop optimization system
agent Writer {
role: "Content creator",
model: "deepseek/deepseek-chat",
prompt: """
You are a professional content creator.
When modifying your article based on feedback:
1. Carefully consider feedback
2. Maintain the overall style of the article
3. Gradually improve quality
"""
}
agent Critic {
role: "Content critic",
model: "deepseek/deepseek-chat",
prompt: """
You are a strict critic.
Review articles and provide specific improvement suggestions:
- Content completeness
- Logical coherence
- Language expression
- Format standards
If the article is already good enough, reply "approved".
"""
}
flow main {
topic = "Write a short article about the future of AI (under 200 words)";
// Initial draft
draft = Writer.run(topic);
loop {
// Get criticism
feedback = Critic.run(draft);
// If approved, exit loop
if ("approved" in feedback) {
break;
}
// Modify based on feedback
draft = Writer.run(f"Modify the article based on the following feedback:\n{feedback}\n\nOriginal:\n{draft}");
} until ("Article quality is excellent, critic approved" or runtime.meta.loop_count >= 3);
print("=== Final Article ===");
print(draft);
if (runtime.meta.loop_count >= 3) {
print("\n(Maximum revision count reached)");
}
}
Execution Flow:
Round 1: Writer produces initial draft -> Critic points out issues
Round 2: Writer revises -> Critic still has feedback
Round 3: Writer revises again -> Critic approves
Output final article
Example 12: DAG Parallel Processing¶
Purpose: Demonstrate DAG operators introduced in Nexa v0.9.7.
Complete Code:
// dag_parallel.nx
// DAG parallel processing example
// Fork operator |>> example
agent TranslatorCN {
model: "deepseek/deepseek-chat",
prompt: "Translate to Chinese"
}
agent TranslatorEN {
model: "deepseek/deepseek-chat",
prompt: "Translate to English"
}
agent TranslatorJP {
model: "deepseek/deepseek-chat",
prompt: "Translate to Japanese"
}
// Merge operator &>> example
agent Merger {
model: "deepseek/deepseek-chat",
prompt: "Integrate multiple translation versions, output comparison table"
}
// Conditional branch operator ?? example
agent UrgentHandler {
model: "deepseek/deepseek-chat",
prompt: "Urgent handling, quick response"
}
agent NormalHandler {
model: "deepseek/deepseek-chat",
prompt: "Standard handling, detailed analysis"
}
flow main {
input_text = "Hello, World!";
// Example 1: Fork - parallel translation to multiple languages
print("=== Multi-language Translation ===");
translations = input_text |>> [TranslatorCN, TranslatorEN, TranslatorJP];
print(translations);
// Example 2: Merge - integrate multiple results
print("\n=== Translation Comparison Table ===");
comparison = [TranslatorCN, TranslatorJP] &>> Merger;
print(comparison);
// Example 3: Conditional branch - choose processing method based on content
print("\n=== Intelligent Routing ===");
urgent_input = "URGENT: System crash!";
normal_input = "Please help me analyze the sales data";
urgent_result = urgent_input ?? UrgentHandler : NormalHandler;
normal_result = normal_input ?? UrgentHandler : NormalHandler;
print("Urgent handling result: " + urgent_result);
print("Standard handling result: " + normal_result);
// Example 4: Complex DAG combination
print("\n=== Complex DAG ===");
complex_result = input_text
|>> [TranslatorCN, TranslatorJP]
&>> Merger;
print(complex_result);
}
Operator Description:
| Operator | Name | Purpose | Example |
|---|---|---|---|
>> |
Pipe | Sequential passing | A >> B |
|>> |
Fork | Parallel send | input |>> [A, B, C] |
&>> |
Merge | Combine results | [A, B] &>> C |
?? |
Conditional Branch | Conditional routing | input ?? A : B |
|| |
Async Fork | Don't wait for results | input || [A, B] |
&& |
Consensus Merge | Need agreement | [A, B] && Judge |
Example 13: Conditional Branch Processing¶
Purpose: Demonstrate semantic_if semantic conditional judgment.
Complete Code:
// semantic_condition.nx
// Semantic conditional judgment example
agent DataAnalyzer {
model: "deepseek/deepseek-chat",
prompt: "Analyze data type and content of user input"
}
agent JSONProcessor {
model: "deepseek/deepseek-chat",
prompt: "Process JSON format data"
}
agent TextProcessor {
model: "deepseek/deepseek-chat",
prompt: "Process plain text data"
}
flow main {
user_input = '{"name": "Zhang San", "age": 25, "city": "Beijing"}';
// Semantic conditional judgment - check if it's JSON
semantic_if "Input content is valid JSON format" fast_match r"^\s*[\[{]" against user_input {
result = JSONProcessor.run(user_input);
print("Processing as JSON: " + result);
} else {
result = TextProcessor.run(user_input);
print("Processing as text: " + result);
}
// Another example: date detection
date_input = "The meeting is scheduled for 2024-03-15";
semantic_if "Contains specific date" fast_match r"\d{4}-\d{2}-\d{2}" against date_input {
print("Date information detected, can create schedule");
} else {
print("No date information detected");
}
}
fast_match Explanation:
fast_match is a regex pre-filter that can quickly judge before calling the LLM:
- If regex matches successfully, enter branch directly (saves tokens)
- If regex doesn't match, still call LLM for semantic judgment
Enterprise Examples¶
Example 14: Research Report Generation System¶
Purpose: Demonstrate a complete enterprise-level research report generation process.
Complete Code:
// research_report.nx
// Enterprise research report generation system
// Output protocol
protocol ResearchReport {
title: "string",
executive_summary: "string",
key_findings: "list[string]",
recommendations: "list[string]",
risk_analysis: "string",
conclusion: "string"
}
// Data collector
agent DataCollector uses std.http, std.fs {
role: "Data collector",
model: "deepseek/deepseek-chat",
prompt: "Collect relevant data and information on specified topics",
cache: true
}
// Data analyst
agent DataAnalyst {
role: "Data analyst",
model: "deepseek/deepseek-chat",
prompt: "Analyze data, extract key insights and trends"
}
// Industry researcher
agent IndustryResearcher {
role: "Industry researcher",
model: "deepseek/deepseek-chat",
prompt: "Research industry background, competitive landscape, and development trends"
}
// Report writer
agent ReportWriter implements ResearchReport {
role: "Report writer",
model: "deepseek/deepseek-chat",
prompt: """
Write professional research reports including:
- Title
- Executive summary
- Key findings
- Recommendations
- Risk analysis
- Conclusion
"""
}
// Quality reviewer
agent QualityReviewer {
role: "Quality reviewer",
model: "deepseek/deepseek-chat",
prompt: "Review report quality, ensure professionalism and completeness"
}
flow main {
topic = "China New Energy Vehicle Market 2024 Annual Analysis";
// Parallel collection and analysis
research_data = topic |>> [DataCollector, IndustryResearcher];
// Analyze data
analysis = research_data &>> DataAnalyst;
// Write report
draft_report = analysis >> ReportWriter;
// Quality review (loop optimization)
loop {
review = QualityReviewer.run(draft_report);
} until ("Report quality approved" or runtime.meta.loop_count >= 2);
print("=== Research Report ===");
print(draft_report);
}
Example 15: Intelligent Customer Service System¶
Purpose: Demonstrate a complete intelligent customer service system.
Complete Code:
// smart_customer_service.nx
// Intelligent customer service system
// User info protocol
protocol UserInfo {
user_id: "string",
name: "string",
membership_level: "string",
recent_orders: "list[string]"
}
// Intent classification
agent IntentClassifier {
role: "Intent classifier",
model: "deepseek/deepseek-chat", // Use fast model
prompt: "Identify user intent, return intent type"
}
// Order query
agent OrderQuery uses std.fs {
role: "Order query specialist",
model: "deepseek/deepseek-chat",
prompt: "Query order status and logistics information"
}
// After-sales service
agent AfterSalesService {
role: "After-sales service specialist",
model: "deepseek/deepseek-chat",
prompt: "Handle returns, exchanges, repairs, and other after-sales issues"
}
// Complaint handling
agent ComplaintHandler uses std.ask_human {
role: "Complaint handling specialist",
model: "deepseek/deepseek-chat",
prompt: "Handle customer complaints, request human assistance when necessary"
}
// Knowledge base Q&A
agent KnowledgeBaseQA {
role: "Knowledge base Q&A",
model: "deepseek/deepseek-chat",
prompt: "Answer product-related questions based on knowledge base",
experience: "product_knowledge.md"
}
// Human handoff judgment
agent HumanHandoff {
role: "Human handoff judgment",
model: "deepseek/deepseek-chat",
prompt: "Determine if human customer service handoff is needed"
}
flow main {
user_message = "The phone I bought last week has issues, I want to return it";
// 1. Intent classification
intent = IntentClassifier.run(user_message);
// 2. Route to corresponding specialist
response = match intent {
intent("Order query") => OrderQuery.run(user_message),
intent("After-sales service") => AfterSalesService.run(user_message),
intent("Complaints and suggestions") => ComplaintHandler.run(user_message),
intent("Product consultation") => KnowledgeBaseQA.run(user_message),
_ => KnowledgeBaseQA.run(user_message)
};
// 3. Determine if human intervention is needed
need_human = HumanHandoff.run(response);
if ("Need human" in need_human) {
std.ask_human.call("Complex issue, human intervention needed: " + user_message);
}
print("Customer service reply: " + response);
}
Example 16: Code Generation and Testing¶
Purpose: Demonstrate the complete process of code generation, testing, and fixing.
Complete Code:
// code_gen_test.nx
// Code generation and automated testing
// Output protocol
protocol GeneratedCode {
code: "string",
language: "string",
description: "string",
test_cases: "list[string]"
}
// Code generator
agent CodeGenerator implements GeneratedCode {
role: "Code generation expert",
model: "deepseek/deepseek-chat",
prompt: """
Generate high-quality code with requirements:
- Clear, commented code
- Follow best practices
- Include boundary handling
"""
}
// Test generator
agent TestGenerator {
role: "Test engineer",
model: "deepseek/deepseek-chat",
prompt: "Generate unit tests for code"
}
// Code reviewer
agent CodeReviewer {
role: "Code reviewer",
model: "deepseek/deepseek-chat",
prompt: "Review code quality, identify issues"
}
// Bug fixer
agent BugFixer {
role: "Bug fix engineer",
model: "deepseek/deepseek-chat",
prompt: "Fix code issues based on review feedback"
}
flow main {
requirement = "Implement a Python function to calculate the nth Fibonacci number";
// 1. Generate code
initial_code = CodeGenerator.run(requirement);
print("=== Initial Code ===");
print(initial_code.code);
// 2. Generate tests
tests = TestGenerator.run(initial_code.code);
print("\n=== Test Cases ===");
print(tests);
// 3. Review and fix loop
loop {
review = CodeReviewer.run(initial_code.code);
if ("approved" in review or "no issues" in review) {
break;
}
initial_code = BugFixer.run(f"Issues: {review}\nCode: {initial_code.code}");
} until ("Code passed review" or runtime.meta.loop_count >= 3);
print("\n=== Final Code ===");
print(initial_code.code);
}
Example Running Checklist¶
Before running these examples, please ensure:
- [ ] Nexa is correctly installed
- [ ]
secrets.nxsfile is configured with required API keys - [ ] Network connection is working (need to access LLM API)
- [ ] For examples using file system, ensure appropriate permissions
Contributing Examples¶
If you have good Nexa examples to share, welcome to:
- Leave a comment at the bottom of the document for discussion
- Submit a Pull Request to the Nexa repository
- Share your experience in the community
💡 More examples are continuously being updated, stay tuned!
Nexa Agent