Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: BloopAI/bloop
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.9
Choose a base ref
...
head repository: BloopAI/bloop
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.5.10
Choose a head ref
  • 13 commits
  • 81 files changed
  • 8 contributors

Commits on Nov 15, 2023

  1. add repo sync analytics (#1122)

    * add repo sync analytics
    
    tracks repo metadata on first index, or on full reindex (when the
    tantivy index hash is updated, for example), includes the following
    info:
    
    - repo ref
    - repo provider
    - size in bytes
    - number of qdrant chunks
    - time taken to index
    
    sample event:
    
        RepoEvent {
            name: "index",
            payload: [
                ("repo_ref", String("nerdypepper/dijo")),
                ("provider", String("github")),
                ("file_count", Number(35)),
                ("chunk_count", Number(236)),
                ("bytes", String("116.59KB")),
                ("sync_time", String("4.957807429s")),
            ],
        }
    
    ---
    
    to test this changeset, set the following values in `local_config.json`:
    
        {
            "analytics_key": "..",
            "analytics_data_plane": ".."
        }
    
    run rudderstack in "live event stream" mode, and index a repository.
    
    * track reindexs
    
    - marks full index resets as `SchemaUpgrade`s
    - marks periodic reindex jobs as `PeriodicSync`s
    
    * clippy
    
    * address review comments
    oppiliappan authored Nov 15, 2023
    Configuration menu
    Copy the full SHA
    c66e99a View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Configuration menu
    Copy the full SHA
    5071ea5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a8c129e View commit details
    Browse the repository at this point in the history
  3. reindex events are not sent unless stats are collected (#1139)

    index-stats must be consolidated before making a check for whether or
    not the analytics event must be sent.
    oppiliappan authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    d064609 View commit details
    Browse the repository at this point in the history
  4. Better notifications on startup failure (#1141)

    * Never start qdrant, just emit a message that it failed to run
    
    * render bug report modal on splash screen
    
    * Proper messaging
    
    ---------
    
    Co-authored-by: anastasiia <[email protected]>
    rsdy and anastasiya1155 authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    d0e2d03 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2635185 View commit details
    Browse the repository at this point in the history
  6. Generate and apply git diffs in studio (#1133)

    Co-authored-by: calyptobai <[email protected]>
    Co-authored-by: calyptobai <[email protected]>
    Co-authored-by: Gabriel Gordon-Hall <[email protected]>
    4 people authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    e90ef0d View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Configuration menu
    Copy the full SHA
    36bb005 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8da2317 View commit details
    Browse the repository at this point in the history
  3. upd bloop (#1144)

    ggordonhall authored Nov 17, 2023
    Configuration menu
    Copy the full SHA
    bdd41af View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f71a58e View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. Support lang and file filters in chat (#1132)

    * Respect path filters in agent queries
    
    * Fix autocomplete for langs
    
    * Add directory indicator
    
    * Add directory indicator to autocomplete
    
    * Use central lang map instead of a separate one
    
    * Simplify this logic
    
    * Add position information to literals
    
    * Add `raw_query` to exchange
    
    * Add offsets to lang filters
    
    * Respect the clippy
    
    * Aggregate and rank languages from the executed queries
    
    * Only offer lang suggestions if there's a lang filter in the query
    
    * Partially parsed lang functions will not return results
    
    * Allow excluding results from certain kind of results
    
    * Normalize results somewhat
    
    * Show lang filters more aggressively
    
    * Add arbitrary language suggestions
    
    * Tuning
    
    * Make it a greedy regex
    
    * render parsed user query in history
    
    * add autocomplete component
    
    * automatically convert user query between input and display
    
    * show only file name in the autocomplete input
    
    * use another character for autocomplete regex
    
    * reorder query
    
    * add content=false query param
    
    * make the suggestions container bigger
    
    * Apply partial lang filter
    
    * fix and test splitUserInputAfterAutocomplete function
    
    * improve styles for highlight background
    
    * update autocomplete chip style
    
    * Add langs queries to fuzzy matcher
    
    * Autocomplete on lang even if there are no matches
    
    * More fine tuning
    
    * More fine tuning
    
    * More tweaks
    
    * Update server/bleep/src/webserver/autocomplete.rs
    
    Co-authored-by: Gabriel Gordon-Hall <[email protected]>
    
    * Nicer interface
    
    * Move `raw_query` to `query`
    
    * Fix tests
    
    * move raw_query inside query
    
    * Propagate certain filters to LLM
    
    ---------
    
    Co-authored-by: rsdy <[email protected]>
    Co-authored-by: rsdy <[email protected]>
    Co-authored-by: Gabriel Gordon-Hall <[email protected]>
    4 people authored Nov 20, 2023
    Configuration menu
    Copy the full SHA
    39d94a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b95712b View commit details
    Browse the repository at this point in the history
Loading