refactor: restructure repo layout
This commit is contained in:
24
llm-functions/.github/ISSUE_TEMPLATE/add_agent.md
vendored
Normal file
24
llm-functions/.github/ISSUE_TEMPLATE/add_agent.md
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
---
|
||||
name: Add a New AI Agent
|
||||
about: Propose an idea or submit a new AI agent for inclusion
|
||||
title: '[Agent Request] Add <Agent Name>'
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
<!-- Your issue may already be reported! Please search for it before creating one. -->
|
||||
|
||||
**Agent Description**
|
||||
<!-- Summarize the purpose and functionality of the proposed agent in a few concise sentences. -->
|
||||
|
||||
**Agent Conversation Starters**
|
||||
<!-- Provide examples of natural language prompts a user may use to interact with the agent. -->
|
||||
|
||||
**Agent Tools**
|
||||
<!-- List and describe the tools (if any) your agent requires or uses. -->
|
||||
<!-- foo: Brief description of tool foo -->
|
||||
<!-- bar: Brief description of tool bar -->
|
||||
|
||||
**Additional context**
|
||||
<!-- Include details to help reviewers understand the feature request, such as relevant documentation, use cases, or screenshots. -->
|
||||
28
llm-functions/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
28
llm-functions/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
<!-- Your issue may already be reported! Please search for it before creating one. -->
|
||||
|
||||
**Describe the bug**
|
||||
<!-- A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
<!-- Steps to reproduce the behavior, including any relevant code snippets. -->
|
||||
|
||||
**Expected behavior**
|
||||
<!-- A clear and concise description of what you expected to happen. -->
|
||||
|
||||
**Screenshots/Logs**
|
||||
<!-- If applicable, add screenshots to help explain your problem. -->
|
||||
|
||||
**Environment**
|
||||
<!-- Please run `argc version` and paste the output -->
|
||||
|
||||
**Additional context**
|
||||
<!-- Add any other context about the problem here. -->
|
||||
22
llm-functions/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
22
llm-functions/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
<!-- Your issue may already be reported! Please search for it before creating one. -->
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
|
||||
|
||||
**Describe the solution you'd like**
|
||||
<!-- A clear and concise description of what you want to happen. -->
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
|
||||
|
||||
**Additional context**
|
||||
<!-- Add any other context or screenshots about the feature request here. -->
|
||||
51
llm-functions/.github/workflows/ci.yaml
vendored
Normal file
51
llm-functions/.github/workflows/ci.yaml
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
all:
|
||||
name: All
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: sigoden/install-binary@v1
|
||||
with:
|
||||
repo: sigoden/argc
|
||||
|
||||
- name: Check versions
|
||||
run: argc version
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
|
||||
- name: Link web-search and code-interpreter
|
||||
run: |
|
||||
argc link-web-search web_search_perplexity.sh
|
||||
argc link-code-interpreter execute_py_code.py
|
||||
|
||||
- name: Run Test
|
||||
run: argc test
|
||||
env:
|
||||
PYTHONIOENCODING: utf-8
|
||||
Reference in New Issue
Block a user