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

Develop to Master #9

Merged
merged 3 commits into from
May 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
18 changes: 0 additions & 18 deletions .github/workflows/issue-assigned-workflows.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/issue-open-workflows.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/pr-open-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}

automate-project-columns:
name: 'Automate Project Columns'
runs-on: ubuntu-latest

steps:
- name: Move PR to In-Progress
uses: alex-page/github-project-automation-plus@v0.3.0
with:
project: PI AGI Libraries
column: In progress
repo-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}

milestone-binder:
name: 'Milestone Binder'
runs-on: ubuntu-latest
Expand Down
11 changes: 6 additions & 5 deletions NPM-README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,10 @@ export class SeniorBackendSoftwareEngineerAGI extends MainAGI<ActionType> {
}
}
```
3. Configure the environment parameters as mentioned in the [Repository Overview](#wrench-repository-overview) section.
4. Create .env file and set your environment configuration, and other necessary configurations.
5. Define input and start the AGI
3. Implement actions and action types needed regarding AGIs capacity. Do not forget to use your own ActionTypes here `MainAGI<ActionType>` which will be extended from ActionType.
4. Configure the environment parameters as mentioned in the [Repository Overview](#wrench-repository-overview) section.
5. Create .env file and set your environment configuration, and other necessary configurations.
6. Define input and start the AGI
```javascript
async function createContent(documentation: string): Promise<Content> {
const environmentUtil = new EnvironmentUtil();
Expand Down Expand Up @@ -150,8 +151,8 @@ async function backend() {
await agi.start(content);
}
```
6. Once you've set up everything, run `npm start` to kick off the AGI.
7. You can find example project here: [Senior Software Engineer AGI](https://github.com/pi-agi/senior-software-engineer)
7. Once you've set up everything, run `npm start` to kick off the AGI.
8. You can find example project here: [Senior Software Engineer AGI](https://github.com/pi-agi/senior-software-engineer)

## :wrench: Repository Overview

Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,10 @@ export class SeniorBackendSoftwareEngineerAGI extends MainAGI<ActionType> {
}
}
```
3. Configure the environment parameters as mentioned in the [Repository Overview](#wrench-repository-overview) section.
4. Create .env file and set your environment configuration, and other necessary configurations.
5. Define input and start the AGI
3. Implement actions and action types needed regarding AGIs capacity. Do not forget to use your own ActionTypes here `MainAGI<ActionType>` which will be extended from ActionType.
4. Configure the environment parameters as mentioned in the [Repository Overview](#wrench-repository-overview) section.
5. Create .env file and set your environment configuration, and other necessary configurations.
6. Define input and start the AGI
```javascript
async function createContent(documentation: string): Promise<Content> {
const environmentUtil = new EnvironmentUtil();
Expand Down Expand Up @@ -150,8 +151,8 @@ async function backend() {
await agi.start(content);
}
```
6. Once you've set up everything, run `npm start` to kick off the AGI.
7. You can find example project here: [Senior Software Engineer AGI](https://github.com/pi-agi/senior-software-engineer)
7. Once you've set up everything, run `npm start` to kick off the AGI.
8. You can find example project here: [Senior Software Engineer AGI](https://github.com/pi-agi/senior-software-engineer)

## :wrench: Repository Overview

Expand Down