Skip to content

Commit 4c25f0c

Browse files
Merge pull request #59 from Cameroon-Developer-Network/main
update the develop branch
2 parents 9575bdc + cf44f3a commit 4c25f0c

9 files changed

Lines changed: 16 additions & 15 deletions

File tree

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
![CodeRabbit Pull Request Reviews](https://img.shields.io/coderabbit/prs/github/Cameroon-Developer-Network/amega-ai?utm_source=oss&utm_medium=github&utm_campaign=amega-ai%2Famega-ai&labelColor=171717&color=FF570A&link=https%3A%2F%2Fcoderabbit.ai&label=CodeRabbit+Reviews)
2-
[![CI](https://github.com/Cameroon-Developer-Network/amega-ai/actions/workflows/ci.yml/badge.svg)](https://github.com/Cameroon-Developer-Network/amega-ai/actions/workflows/ci.yml)
1+
![CodeRabbit Pull Request Reviews](https://img.shields.io/coderabbit/prs/github/Cameroon-Developer-Network/amega-ai?utm_source=oss&utm_medium=github&utm_campaign=Cameroon-Developer-Network%2Famega-ai&labelColor=171717&color=FF570A&link=https%3A%2F%2Fcoderabbit.ai&label=CodeRabbit+Reviews)
2+
[![Code Quality](https://github.com/Cameroon-Developer-Network/amega-ai/actions/workflows/code-quality.yml/badge.svg)](https://github.com/Cameroon-Developer-Network/amega-ai/actions/workflows/code-quality.yml)
3+
4+
[![Documentation](https://github.com/Cameroon-Developer-Network/amega-ai/actions/workflows/docs.yml/badge.svg)](https://github.com/Cameroon-Developer-Network/amega-ai/actions/workflows/docs.yml)
5+
[![Issue and PR Management](https://github.com/Cameroon-Developer-Network/amega-ai/actions/workflows/issue-pr.yml/badge.svg)](https://github.com/Cameroon-Developer-Network/amega-ai/actions/workflows/issue-pr.yml)
6+
37
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
48
[![Python Version](https://img.shields.io/badge/python-3.8%2B-blue)](https://www.python.org/downloads/)
59

@@ -107,10 +111,7 @@ pytest tests/e2e/
107111

108112
## 📚 Documentation
109113

110-
- [API Documentation](docs/api/README.md)
111-
- [User Guide](docs/guides/user-guide.md)
112-
- [Developer Guide](docs/guides/developer-guide.md)
113-
- [Contributing Guidelines](CONTRIBUTING.md)
114+
- [API Documentation](https://cameroon-developer-network.github.io/amega-ai/)
114115

115116
## 🔄 Development Workflow
116117

@@ -153,6 +154,6 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
153154

154155
- Create an issue for bug reports or feature requests
155156
- Join our [Discord community](https://discord.gg/your-server) for discussions
156-
- Email us at support@amega-ai.com for other inquiries
157+
- Email us at camdev237@gmail.com for other inquiries
157158

158159

backend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
This package contains the core functionality for the AMEGA-AI platform.
55
"""
66

7-
__version__ = "0.1.0"
7+
__version__ = "0.1.0"

backend/pr_reviewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ async def suggest_improvements(self, file_content: str) -> Dict:
137137
temperature=0.7
138138
)
139139

140-
return {'suggestions': suggestions.split('\n')}
140+
return {'suggestions': suggestions.split('\n')}

scripts/init_db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ def init_database():
6060

6161
if __name__ == "__main__":
6262
print("Initializing database...")
63-
init_database()
63+
init_database()

src/amega_ai/api/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ class Config:
100100
"presence_penalty": 0.0,
101101
"frequency_penalty": 0.0
102102
}
103-
}
103+
}

src/amega_ai/core/model_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,4 @@ def train_model(
185185
}
186186
}
187187
)
188-
raise
188+
raise

src/amega_ai/utils/logging_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,4 +184,4 @@ def get_logger(component_name: str = "amega_ai", extra_context: Optional[Union[d
184184
logger = logging.getLogger(component_name)
185185
if extra_context:
186186
return SanitizingLoggerAdapter(logger, {"extra_context": extra_context})
187-
return logger
187+
return logger

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
AMEGA-AI Test Suite
33
44
This package contains test cases for the AMEGA-AI platform.
5-
"""
5+
"""

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ def client():
3434
def cleanup_db():
3535
"""Clean up the fake database after each test."""
3636
yield
37-
fake_users_db.clear()
37+
fake_users_db.clear()

0 commit comments

Comments
 (0)