Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README.md (first paragraph rewording) #5

Merged
merged 3 commits into from
Jun 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update README.md
small rephrasing
  • Loading branch information
5ibyl authored Jun 22, 2024
commit 94feb51bd2eea66c2220435343816bf18f04d405
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<a href="https://github.com/evilsocket/nerve/blob/master/LICENSE.md"><img alt="Software License" src="https://img.shields.io/badge/license-GPL3-brightgreen.svg?style=flat-square"></a>
</p>

**Nerve is a tool that creates stateful agents with any LLM — without writing a single line of code.** Agents created with Nerve are capable of both planning _and_ enacting step-by-step whatever actions are required to complete a user-defined task. This is done by dynamically updating the system prompt with new information gathered through the agent's previous actions, making the agent stateful across multiple inferences.
**Nerve is a tool that creates stateful agents with any LLM — without writing a single line of code.** Agents created with Nerve are capable of both planning _and_ enacting step-by-step whatever actions are required to complete a user-defined task. This is done by dynamically updating the system prompt with new information gathered during previous actions, making the agent stateful across multiple inferences.
- **Automated Problem Solving:** Nerve provides a standard library of actions the agent uses autonomously to inform and enhance its performance. These include identifying specific goals required to complete the task, devising and revising a plan to achieve those goals, and creating and recalling memories comprised of pertinent information gleaned during previous actions.
- **User-Defined Agents:** Agents are defined using a standard YAML template. _The sky is the limit!_ You can define an agent for any task you desire — check out the existing examples for inspiration: a [two-person chatroom](examples/weird_chat/task.yml), an [SSH agent that completes tasks using bash](examples/ssh_agent/task.yml), a [fuzzer](examples/fuzzer/task.yml), and a [web vulnerability scanner](examples/web_vulnerability_scanner/task.yml).
- **Works with any LLM:** Nerve is an LLM-agnostic tool. Currently, it features integrations for any model accessible via the [ollama](https://github.com/ollama/ollama) or [OpenAI](https://openai.com/index/openai-api/) APIs.
Expand Down
Loading