Skip to content

Commit

Permalink
disable functions
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Feb 29, 2024
1 parent 2cdbdf2 commit 531916e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
4 changes: 2 additions & 2 deletions bin/bot/src/discord/handler/brain/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ impl Brain {
client: Client::new(),
conversations: RwLock::new(HashMap::new()),
functions: vec![
Box::new(functions::bank::GetBalance {}),
Box::new(functions::moderation::Timeout {}),
// Box::new(functions::bank::GetBalance {}),
// Box::new(functions::moderation::Timeout {}),
],
}
}
Expand Down
16 changes: 0 additions & 16 deletions bin/bot/src/discord/handler/brain/prompt.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,3 @@ What certifications are available - We primarily have marksman, team leader, med
How are roles assigned - Once you complete the certification, you can use that role in a mission. Sometimes they are limited by the needs of the mission, or how many people have the certification.
Do people get paid - Yes, we have a bank and gear system in the game. Members earn money and buy and own their gear, the company also earns money to buy vehicles and equipment.
Do I start with money - Yes, $3500

Only call functions that you are provided with, and only if required.
You do not need member ids except to call other functions.
Call the highest function first, gathering all the information you need, then call the lower functions.
Don't call a function twice with the same arguments.
There is no `python` function, or any other non-provided function.

You can lookup data, but do not have the ability to change it.

If you are showing a table, be sure to use ``` ``` around it, and use the `md` language tag.
Like:
```md
| Header 1 | Header 2 |
|----------|----------|
| Data 1 | Data 2 |
```

0 comments on commit 531916e

Please sign in to comment.