Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
"""
|
2 |
-
Fine-
|
3 |
Author: Spencer Purdy
|
4 |
Description: Production-ready RAG system with fine-tuned LLM for codebase analysis
|
5 |
Features: Automatic model fine-tuning, vector search, evaluation metrics, cost tracking, source attribution
|
@@ -1700,7 +1700,7 @@ def create_gradio_interface(rag_system: RAGSystem) -> gr.Blocks:
|
|
1700 |
|
1701 |
# Create professional interface
|
1702 |
with gr.Blocks(
|
1703 |
-
title="Fine-
|
1704 |
theme=gr.themes.Soft(),
|
1705 |
css="""
|
1706 |
.gradio-container {font-family: 'Source Sans Pro', sans-serif;}
|
@@ -1710,7 +1710,7 @@ def create_gradio_interface(rag_system: RAGSystem) -> gr.Blocks:
|
|
1710 |
) as interface:
|
1711 |
|
1712 |
gr.Markdown("""
|
1713 |
-
# Fine-
|
1714 |
**Author:** Spencer Purdy
|
1715 |
|
1716 |
Production-ready system featuring automatic model fine-tuning on code-specific tasks,
|
@@ -1859,7 +1859,7 @@ def main():
|
|
1859 |
try:
|
1860 |
# System startup
|
1861 |
logger.info("=" * 70)
|
1862 |
-
logger.info("Fine-
|
1863 |
logger.info("Author: Spencer Purdy")
|
1864 |
logger.info("=" * 70)
|
1865 |
|
|
|
1 |
"""
|
2 |
+
Fine-Tuned RAG Framework for Code Analysis
|
3 |
Author: Spencer Purdy
|
4 |
Description: Production-ready RAG system with fine-tuned LLM for codebase analysis
|
5 |
Features: Automatic model fine-tuning, vector search, evaluation metrics, cost tracking, source attribution
|
|
|
1700 |
|
1701 |
# Create professional interface
|
1702 |
with gr.Blocks(
|
1703 |
+
title="Fine-Tuned RAG Framework for Code Analysis",
|
1704 |
theme=gr.themes.Soft(),
|
1705 |
css="""
|
1706 |
.gradio-container {font-family: 'Source Sans Pro', sans-serif;}
|
|
|
1710 |
) as interface:
|
1711 |
|
1712 |
gr.Markdown("""
|
1713 |
+
# Fine-Tuned RAG Framework for Code Analysis
|
1714 |
**Author:** Spencer Purdy
|
1715 |
|
1716 |
Production-ready system featuring automatic model fine-tuning on code-specific tasks,
|
|
|
1859 |
try:
|
1860 |
# System startup
|
1861 |
logger.info("=" * 70)
|
1862 |
+
logger.info("Fine-Tuned RAG Framework for Code Analysis")
|
1863 |
logger.info("Author: Spencer Purdy")
|
1864 |
logger.info("=" * 70)
|
1865 |
|