Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FireBird-Technologies/Auto-Analyst
/ functions
Functions
837 in github.com/FireBird-Technologies/Auto-Analyst
⨍
Functions
837
◇
Types & classes
223
↳
Endpoints
86
Method
getDefaultTrialCredits
* Get the default trial credits for new users
auto-analyst-frontend/lib/credits-config.ts:227
Function
getEnterpriseFeatures
()
auto-analyst-frontend/lib/features/feature-config.ts:148
Function
getFreeFeatures
()
auto-analyst-frontend/lib/features/feature-config.ts:140
Function
getModelsByTier
(tierId: string)
auto-analyst-frontend/lib/model-registry.ts:293
Function
getNextMonthFirstDay
()
auto-analyst-frontend/lib/redis.ts:272
Function
getNextYearFirstDay
()
auto-analyst-frontend/lib/redis.ts:277
Method
getNextYearlyResetDate
* Get the reset date one year from today (same day next year)
auto-analyst-frontend/lib/credits-config.ts:183
Function
getOneMonthFromToday
()
auto-analyst-frontend/lib/redis.ts:256
Function
getOneYearFromToday
()
auto-analyst-frontend/lib/redis.ts:264
Function
getPaidFeatures
()
auto-analyst-frontend/lib/features/feature-config.ts:144
Method
getPlanName
* Get plan name from plan type
auto-analyst-frontend/lib/credits-config.ts:255
Method
getPlanType
* Get plan type from plan name
auto-analyst-frontend/lib/credits-config.ts:248
Function
getRemainingCredits
(userId: string)
auto-analyst-frontend/lib/redis.ts:133
Method
getTrialEndDate
* Get trial end date (delegates to TrialUtils)
auto-analyst-frontend/lib/credits-config.ts:234
Function
getUpgradeUrl
(requiredTier: UserTier)
auto-analyst-frontend/lib/features/feature-access.ts:200
Function
getUserId
()
auto-analyst-frontend/lib/api/auth.ts:38
Function
getUserProfile
(userId: string)
auto-analyst-frontend/lib/redis.ts:673
Function
getUserSubscriptionData
(userId: string)
auto-analyst-frontend/lib/redis.ts:315
Function
get_all_available_templates
Get all available agent templates from the database. Args: db_session: Database session Returns: List of agent
auto-analyst-backend/src/agents/agents.py:212
Function
get_all_models_for_provider
Get all models for a specific provider
auto-analyst-backend/src/utils/model_registry.py:393
Function
get_all_templates
Get all available agent templates with global usage statistics
auto-analyst-backend/src/routes/templates_routes.py:62
Function
get_blog_post
Get a specific blog post by ID
auto-analyst-backend/src/routes/blog_routes.py:48
Function
get_blog_tags
Get all unique tags from blog posts
auto-analyst-backend/src/routes/blog_routes.py:82
Function
get_chat
Get a chat by ID with all messages
auto-analyst-backend/src/routes/chat_routes.py:55
Function
get_chat_feedback
Get all feedback for messages in a specific chat
auto-analyst-backend/src/routes/feedback_routes.py:157
Method
get_chat_feedback
Get all feedback for messages in a specific chat. Args: chat_id: ID of the chat to get feedback for
auto-analyst-backend/src/managers/chat_manager.py:821
Function
get_chats
Get recent chats, optionally filtered by user_id
auto-analyst-backend/src/routes/chat_routes.py:67
Function
get_code_execution_summary
Get a summary of code execution analytics including success rates, common errors, and model performance.
auto-analyst-backend/src/routes/analytics_routes.py:1069
Function
get_context_window
Get the context window size for a model
auto-analyst-backend/src/utils/model_registry.py:389
Function
get_cost_projections
( db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key) )
auto-analyst-backend/src/routes/analytics_routes.py:688
Function
get_cost_summary
( period: str = "30d", db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key)
auto-analyst-backend/src/routes/analytics_routes.py:564
Function
get_credit_cost
Get the credit cost for a model
auto-analyst-backend/src/utils/model_registry.py:380
Function
get_daily_costs
( period: str = "30d", db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key)
auto-analyst-backend/src/routes/analytics_routes.py:599
Function
get_db
()
auto-analyst-backend/src/db/init_db.py:54
Function
get_default_dataset
Get default dataset and ensure session is using it
auto-analyst-backend/src/routes/session_routes.py:531
Function
get_detailed_code_executions
Get detailed information about individual code executions with filtering options.
auto-analyst-backend/src/routes/analytics_routes.py:1170
Function
get_detailed_feedback
Get detailed feedback records with filtering options
auto-analyst-backend/src/routes/analytics_routes.py:1578
Function
get_display_name
Get the display name for a model
auto-analyst-backend/src/utils/model_registry.py:385
Function
get_error_analysis
Analyze common error patterns in failed code executions
auto-analyst-backend/src/routes/analytics_routes.py:1346
Function
get_excel_sheets
Get the list of sheet names from an Excel file
auto-analyst-backend/src/routes/session_routes.py:117
Function
get_featured_post
Get the featured blog post
auto-analyst-backend/src/routes/blog_routes.py:65
Method
get_feedback_statistics
Get feedback statistics for analysis. Args: user_id: Optional user ID to filter by start_date: Optio
auto-analyst-backend/src/managers/chat_manager.py:856
Function
get_feedback_summary
Get summary statistics about user feedback ratings.
auto-analyst-backend/src/routes/analytics_routes.py:1455
Function
get_html_report
Get only the HTML report for a specific analysis by UUID
auto-analyst-backend/src/routes/deep_analysis_routes.py:462
Function
get_latest_code
Retrieve the latest code for a specific message_id Args: request_data: Body containing message_id request: FastAPI Reque
auto-analyst-backend/src/routes/code_routes.py:763
Function
get_message_feedback
Get feedback for a specific message
auto-analyst-backend/src/routes/feedback_routes.py:118
Method
get_message_feedback
Get feedback for a specific message. Args: message_id: ID of the message to get feedback for
auto-analyst-backend/src/managers/chat_manager.py:785
Function
get_model_costs
( period: str = "30d", db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key)
auto-analyst-backend/src/routes/analytics_routes.py:651
Function
get_model_history
( period: str = "30d", db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key)
auto-analyst-backend/src/routes/analytics_routes.py:465
Function
get_model_metrics
( db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key) )
auto-analyst-backend/src/routes/analytics_routes.py:531
Function
get_model_object
Get model object by name
auto-analyst-backend/src/utils/model_registry.py:219
Function
get_model_settings
Get current model settings for the specific session
auto-analyst-backend/src/routes/session_routes.py:508
Function
get_model_tier
(model_name)
auto-analyst-backend/src/utils/model_tier.py:4
Function
get_model_usage
( period: str = "30d", db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key)
auto-analyst-backend/src/routes/analytics_routes.py:426
Function
get_models_by_tier
Get all models for a specific tier
auto-analyst-backend/src/utils/model_registry.py:399
Method
get_provider_for_model
Determine the provider based on model name
auto-analyst-backend/src/managers/ai_manager.py:76
Function
get_public_ticker_data
Get public ticker data for the landing page showing overall platform statistics. This endpoint is public and doesn't require authentication.
auto-analyst-backend/src/routes/analytics_routes.py:1658
Function
get_report_by_id
Get a specific deep analysis report by ID
auto-analyst-backend/src/routes/deep_analysis_routes.py:200
Function
get_report_by_uuid
Get a specific deep analysis report by UUID
auto-analyst-backend/src/routes/deep_analysis_routes.py:281
Function
get_reports
Get deep analysis reports, optionally filtered by user_id or status
auto-analyst-backend/src/routes/deep_analysis_routes.py:120
Function
get_session_id_dependency
Dependency to get session ID, wrapped for FastAPI
auto-analyst-backend/src/routes/session_routes.py:89
Function
get_session_info
Get information about the current session including dataset status
auto-analyst-backend/src/routes/session_routes.py:800
Function
get_session_stats
( db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key) )
auto-analyst-backend/src/routes/analytics_routes.py:343
Function
get_template
Get a specific template by ID with global usage statistics
auto-analyst-backend/src/routes/templates_routes.py:546
Function
get_template_categories
Get list of all template categories
auto-analyst-backend/src/routes/templates_routes.py:587
Function
get_templates_by_categories
Get all templates grouped by category for frontend template browser with global usage statistics
auto-analyst-backend/src/routes/templates_routes.py:610
Function
get_templates_by_category
Get all templates in a specific category with global usage statistics
auto-analyst-backend/src/routes/templates_routes.py:676
Function
get_tier
(model_name)
auto-analyst-backend/scripts/tier_maker.py:16
Function
get_tier_efficiency
( period: str = "30d", db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key)
auto-analyst-backend/src/routes/analytics_routes.py:1015
Function
get_tier_projections
( db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key) )
auto-analyst-backend/src/routes/analytics_routes.py:939
Function
get_today_costs
( db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key) )
auto-analyst-backend/src/routes/analytics_routes.py:726
Method
get_tokenizer
(self)
auto-analyst-backend/src/managers/app_manager.py:56
Function
get_usage_summary
( db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key) )
auto-analyst-backend/src/routes/analytics_routes.py:789
Method
get_usage_summary
Get a summary of model usage including total costs, tokens, and usage by model. Args: start_date: Optional start
auto-analyst-backend/src/managers/chat_manager.py:478
Function
get_user_activity
( period: str = "30d", db: Session = Depends(get_db), api_key: str = Depends(verify_admin_api_key)
auto-analyst-backend/src/routes/analytics_routes.py:271
Function
get_user_by_email
Get a user by email
auto-analyst-backend/src/managers/user_manager.py:121
Function
get_user_code_execution_stats
Get statistics about code executions grouped by user
auto-analyst-backend/src/routes/analytics_routes.py:1295
Function
get_user_enabled_templates
Get only templates that are enabled for the user (all templates enabled by default)
auto-analyst-backend/src/routes/templates_routes.py:193
Function
get_user_enabled_templates_for_planner
Get enabled templates for planner use (max 10 templates)
auto-analyst-backend/src/routes/templates_routes.py:280
Function
get_user_historical_reports
Get all historical deep analysis reports for a user
auto-analyst-backend/src/routes/deep_analysis_routes.py:166
Function
get_user_template_preferences
Get all templates with user preferences (enabled/disabled status and usage)
auto-analyst-backend/src/routes/templates_routes.py:107
Function
get_users
( limit: int = 100, offset: int = 0, db: Session = Depends(get_db), api_key: str = Depends(ver
auto-analyst-backend/src/routes/analytics_routes.py:215
Function
handleAccept
()
auto-analyst-frontend/components/landing/CookieConsent.tsx:19
Function
handleAdminSubmit
(e: React.FormEvent)
auto-analyst-frontend/app/login/page.tsx:24
Function
handleAgentSelect
(agent: any)
auto-analyst-frontend/components/chat/ChatInput.tsx:147
Function
handleAnalyticsDashboard
()
auto-analyst-frontend/components/chat/UserProfilePopup.tsx:51
Function
handleAutoGenerateClick
()
auto-analyst-frontend/components/chat/CSVUploadDialogue.tsx:314
Function
handleBeforeUnload
()
auto-analyst-frontend/app/account/page.tsx:215
Function
handleCSVConfirmUpload
( name: string, description: string, fillNulls: boolean, convertTypes: boolean, columns: s
auto-analyst-frontend/lib/hooks/useChatInput.ts:566
Function
handleCancel
()
auto-analyst-frontend/components/chat/CodeFixButton.tsx:351
Function
handleCancelSubscription
()
auto-analyst-frontend/app/account/page.tsx:403
Function
handleChatSelect
(chatId: number)
auto-analyst-frontend/components/ResponsiveLayout.tsx:21
Function
handleCheckout
(priceId: string | null | undefined, tierName: string)
auto-analyst-frontend/app/pricing/page.tsx:134
Function
handleClick
()
auto-analyst-frontend/components/deep-analysis/DeepAnalysisButton.tsx:36
Function
handleClick
()
auto-analyst-frontend/components/features/FeatureGate.tsx:161
Function
handleClick
()
auto-analyst-frontend/components/custom-templates/TemplateCard.tsx:34
Function
handleClick
()
auto-analyst-frontend/components/custom-templates/TemplatesButton.tsx:32
Function
handleClickOutside
(event: MouseEvent)
auto-analyst-frontend/components/chat/ChatInput.tsx:153
Function
handleClickOutside
(event: MouseEvent)
auto-analyst-frontend/components/chat/UserProfilePopup.tsx:23
Function
handleConfirm
()
auto-analyst-frontend/components/chat/ExcelUploadDialog.tsx:55
← previous
next →
601–700 of 837, ranked by callers