Spaces:
Runtime error
Runtime error
eerge branch 'main' of github.com:stuti-agrawal/ClaimCheck.AI
Browse files- .github/workflows/pylint.yml +23 -0
- README.md +3 -0
.github/workflows/pylint.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Pylint
|
| 2 |
+
|
| 3 |
+
on: [push]
|
| 4 |
+
|
| 5 |
+
jobs:
|
| 6 |
+
build:
|
| 7 |
+
runs-on: ubuntu-latest
|
| 8 |
+
strategy:
|
| 9 |
+
matrix:
|
| 10 |
+
python-version: ["3.8", "3.9", "3.10"]
|
| 11 |
+
steps:
|
| 12 |
+
- uses: actions/checkout@v4
|
| 13 |
+
- name: Set up Python ${{ matrix.python-version }}
|
| 14 |
+
uses: actions/setup-python@v3
|
| 15 |
+
with:
|
| 16 |
+
python-version: ${{ matrix.python-version }}
|
| 17 |
+
- name: Install dependencies
|
| 18 |
+
run: |
|
| 19 |
+
python -m pip install --upgrade pip
|
| 20 |
+
pip install pylint
|
| 21 |
+
- name: Analysing the code with pylint
|
| 22 |
+
run: |
|
| 23 |
+
pylint $(git ls-files '*.py')
|
README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
# ClaimCheck.AI β Agentic Fact Verification for Calls
|
| 2 |
|
|
|
|
|
|
|
|
|
|
| 3 |
**ClaimCheck.AI** is an multi-agent AI platform that turns meeting audio (Zoom/phone) into an evidence-backed report:
|
| 4 |
1) **ASR Agent** β transcript + timestamps
|
| 5 |
2) **Claim Extraction (watsonx.ai LLM)** β JSON claims
|
|
|
|
| 1 |
# ClaimCheck.AI β Agentic Fact Verification for Calls
|
| 2 |
|
| 3 |
+
<img width="1317" height="780" alt="image" src="https://github.com/user-attachments/assets/9fa259e1-3527-4573-86ec-a27053370a03" />
|
| 4 |
+
|
| 5 |
+
|
| 6 |
**ClaimCheck.AI** is an multi-agent AI platform that turns meeting audio (Zoom/phone) into an evidence-backed report:
|
| 7 |
1) **ASR Agent** β transcript + timestamps
|
| 8 |
2) **Claim Extraction (watsonx.ai LLM)** β JSON claims
|