mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-18 01:14:53 +00:00
13 lines
255 B
Ruby
13 lines
255 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ::DiscourseAi
|
|
module Database
|
|
class Connection
|
|
def self.db
|
|
pg_conn = PG.connect(SiteSetting.ai_embeddings_pg_connection_string)
|
|
MiniSql::Connection.get(pg_conn)
|
|
end
|
|
end
|
|
end
|
|
end
|