SpencerCPurdy commited on
Commit
e7c1dab
·
verified ·
1 Parent(s): bf65f9c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -1,5 +1,5 @@
1
  """
2
- Fine-tuned LLM with RAG for Codebase 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,7 +1700,7 @@ def create_gradio_interface(rag_system: RAGSystem) -> gr.Blocks:
1700
 
1701
  # Create professional interface
1702
  with gr.Blocks(
1703
- title="Fine-tuned LLM with RAG for Codebase Analysis",
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-tuned LLM with RAG for Codebase Analysis
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-tuned LLM with RAG for Codebase Analysis")
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