- Added FastAPI application to handle Jira webhooks. - Created Pydantic models for Jira payload and LLM output. - Integrated LangChain with OpenAI and Ollama for LLM processing. - Set up Langfuse for tracing and monitoring. - Implemented analysis logic for Jira tickets, including sentiment analysis and label suggestions. - Added test endpoint for LLM integration. - Updated requirements.txt to include necessary dependencies and versions.
		
			
				
	
	
		
			50 lines
		
	
	
		
			524 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			524 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Operating System files
 | |
| .DS_Store
 | |
| .localized
 | |
| Thumbs.db
 | |
| Desktop.ini
 | |
| 
 | |
| # Python
 | |
| __pycache__/
 | |
| *.pyc
 | |
| *.pyo
 | |
| *.pyd
 | |
| .Python
 | |
| env/
 | |
| venv/
 | |
| *.egg
 | |
| *.egg-info/
 | |
| build/
 | |
| dist/
 | |
| 
 | |
| # Editor files (e.g., Visual Studio Code, Sublime Text, Vim)
 | |
| .vscode/
 | |
| *.sublime-project
 | |
| *.sublime-workspace
 | |
| .idea/
 | |
| *.swp
 | |
| *.swo
 | |
| 
 | |
| # Logs and temporary files
 | |
| log/
 | |
| *.log
 | |
| *.tmp
 | |
| tmp/
 | |
| 
 | |
| # Package managers
 | |
| node_modules/
 | |
| yarn.lock
 | |
| package-lock.json
 | |
| 
 | |
| # Dependencies for compiled languages (e.g., C++, Java)
 | |
| bin/
 | |
| obj/
 | |
| *.exe
 | |
| *.dll
 | |
| *.jar
 | |
| *.class
 | |
| 
 | |
| # Miscellaneous
 | |
| .env
 | |
| .DS_Store
 |